我在groupId mortbay上使用了jetty-maven-plugin,但我想使用最新的Jetty版本9。
我们可以看到mortbay没有提供jetty版本9 http://repo2.maven.org/maven2/org/mortbay/jetty/jetty-maven-plugin/ 但是,是的。是的。
我之前的pom.xml包含:
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>8.1.9.v20130131</version>
<configuration>
<scanIntervalSeconds>10</scanIntervalSeconds>
<stopKey>foo</stopKey>
<stopPort>9999</stopPort>
<connectors>
<connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
<port>8080</port>
<maxIdleTime>60000</maxIdleTime>
</connector>
<connector implementation="org.eclipse.jetty.server.ssl.SslSocketConnector">
<port>8443</port>
<maxIdleTime>60000</maxIdleTime>
<keystore>/tmp/keystore</keystore>
<password>jetty8</password>
<keyPassword>jetty8</keyPassword>
</connector>
</connectors>
</configuration>
<executions>
<execution>
<id>start-jetty</id>
<phase>pre-integration-test</phase>
<goals>
<goal>start</goal>
</goals>
<configuration>
<scanIntervalSeconds>0</scanIntervalSeconds>
<daemon>true</daemon>
</configuration>
</execution>
<execution>
<id>stop-jetty</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
但是当我切换到eclipse时
<groupId>org.eclipse.jetty</groupId>
<connectors>
不再可用。
任何人都可以解释如何使用org.eclipse.jetty配置SSL / HTTS?
答案 0 :(得分:2)
Jetty 9的jetty连接器设置发生了巨大变化,因此插件配置也发生了变化。
http://www.eclipse.org/jetty/documentation/current/jetty-maven-plugin.html
虽然如果你想设置ssl支持(我通常没有看到,因为那通常更多的是生产部署,然后是开发时间),那么你可以查看jetty-9的jetty-distribution和将ssl连接器的配置拼凑到jetty.xml文件中,并将其与配置属性一起使用。
仔细阅读有关这方面的文档,我们应该将此作为一个示例,因此我将打开一个任务来更好地记录,或者在maven插件上添加正确的ssl配置。
错误:https://bugs.eclipse.org/bugs/show_bug.cgi?id=408962
随意评论或关注该问题。