SSL Configuration on Maven Tomcat Plugin

后端 未结 2 738
感情败类
感情败类 2020-12-24 10:00

I am trying to develop a Wicket app. It\'s login page must open with SSL. So I did some coding. But I can\'t find to configure the maven tomcat 7 plugin for SSL. I created k

2条回答
  •  我在风中等你
    2020-12-24 10:12

    With this configuration in my pom.xml I get it working:

    
        org.apache.tomcat.maven
        tomcat7-maven-plugin
        2.0
        
            /${project.build.finalName}
            ${basedir}/context.xml
            8443
            ${basedir}/certificates/keystore.jks
            password
        
    
    

提交回复
热议问题