我想在我的 Apache wicket java 应用程序中使用 spdy 功能设置 jetty 9。我没有得到正确的 Maven 依赖项。
问问题
586 次
1 回答
1
Jetty 与 SPDY 的依赖关系是:
<dependency>
<groupId>org.eclipse.jetty.spdy</groupId>
<artifactId>spdy-jetty</artifactId>
<version>8.1.11.v20130520</version>
</dependency>
您可以在此处找到所有可用版本的列表。
评论后编辑:
HTTPSPDYServerConnector
可以在这里找到:
<dependency>
<groupId>org.eclipse.jetty.spdy</groupId>
<artifactId>spdy-jetty-http</artifactId>
<version>8.1.11.v20130520</version>
</dependency>
在这里WebAppContext
:
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<version>8.1.11.v20130520</version>
</dependency>
只需在http://mvnrepository.com上使用搜索来查找任何其他 JAR。
于 2013-06-04T06:43:00.710 回答