2

我正在使用带有 groupId mortbay 的 jetty-maven-plugin,但我想使用最新的 Jetty 版本 9。

正如我们所见,mortbay 不提供码头版本 9 http://repo2.maven.org/maven2/org/mortbay/jetty/jetty-maven-plugin/ 但 eclipse 是的。

我以前的 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?

4

1 回答 1

2

Jetty 9 的码头连接器设置发生了巨大变化,因此插件配置也发生了变化。

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

随意评论或关注该问题。

于 2013-05-24T11:23:02.270 回答