我从maven central下载了jetty-all(9.3.6),但是HttpClientTransportOverHTTP2类根本不存在。但是,在jetty文档中,它表示它应该存在(相同的版本,相同的发布日期)。
那么HttpClientTransportOverHTTP2在哪里?
答案 0 :(得分:2)
我使用了这种依赖:
<dependency>
<groupId>org.eclipse.jetty.http2</groupId>
<artifactId>http2-http-client-transport</artifactId>
<version>9.3.7.RC0</version>
</dependency>
代码段:
public static void main(String[] args) {
HttpClientTransportOverHTTP2 clientTransportOverHTTP2;
更新1:
关于有用的评论。版本9.3.7目前不是稳定版本。
对于所有想要使用稳定版本的人来说,这种依赖应该这样做:
<dependency>
<groupId>org.eclipse.jetty.http2</groupId>
<artifactId>http2-http-client-transport</artifactId>
<version>9.3.6.v20151106</version>
</dependency>