具有SPDY功能的Jetty 9的maven依赖是什么?

时间:2013-06-04 06:37:48

标签: java maven jetty

我想在Apache wicket java应用程序中使用spdy功能设置jetty 9。我没有得到正确的maven依赖。

1 个答案:

答案 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。