我想在Apache wicket java应用程序中使用spdy功能设置jetty 9。我没有得到正确的maven依赖。
答案 0 :(得分:1)
使用SPDY对Jetty的依赖性为:
<dependency>
<groupId>org.eclipse.jetty.spdy</groupId>
<artifactId>spdy-jetty</artifactId>
<version>8.1.11.v20130520</version>
</dependency>
您可以找到的所有可用版本列表here。
评论后编辑:
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。