我正在尝试将web应用程序配置为使用tomee maven插件在https上运行,但它默认为http。如何指定使用https所需的配置?
这是我到目前为止所做的:
<build>
<plugins>
<plugin>
<groupId>org.apache.openejb.maven</groupId>
<artifactId>tomee-maven-plugin</artifactId>
<version>1.7.1</version>
<configuration>
<tomeeVersion>1.7.1</tomeeVersion>
<tomeeClassifier>plus</tomeeClassifier>
<tomeeHttpsPort>8443</tomeeHttpsPort>
<context>${artifactId}</context>
<tomeeHost>testapp</tomeeHost>
<systemVariables>
<javax.net.ssl.keyStorePassword>changeit</javax.net.ssl.keyStorePassword>
<javax.net.ssl.keystoreFile>keystorePath</javax.net.ssl.keystoreFile>
</systemVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
答案 0 :(得分:1)
正如我所看到的那样,通过检查插件的版本,默认情况下使用https的功能尚未实现。
您可以使用版本7.0.3:
<dependency>
<groupId>org.apache.tomee.maven</groupId>
<artifactId>tomee-maven-plugin</artifactId>
<version>7.0.3</version>
</dependency>
我不完全确定,如果它只是与另一个groupId相同的插件,但github where the plugin is developed看起来很有希望。
正如this mailing-list中所述,如果没有设置http-port,插件默认会使用https。您也可以将forceHttps
设置为true
以强制服务器使用https。
由于您在当前插件中使用的openejb-core
版本,也可能会出现一些错误。如果切换插件,则可能需要另一个openejb-core
版本。