6

サーバー プッシュをサポートする Jetty の HTTP/2 クライアントは、Jetty 9.3 RC (リンク) で実装されています。ただし、これに関連するドキュメントやサンプル コードは見つかりませんでした。たとえば、このサイトからプッシュされたリソースを受信するためのサンプルコードを提供できますか: https://nghttp2.org ( http2 サーバープッシュを有効にしたパブリックサーバー)

---UPDATE 1--- sbordet が言ったように、このファイル をテストしようとしました。ただし、この行を実行した後

mvn compile exec:java

このエラーに遭遇しました

[INFO] --- exec-maven-plugin:1.4.0:java (default-cli) @ http2client ---
2015-05-05 01:52:47.808:INFO::com.example.Client.main(): Logging initialized @3096ms
[WARNING]
java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:483)
    at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:293)
    at java.lang.Thread.run(Thread.java:745)
Caused by: java.util.concurrent.TimeoutException
    at org.eclipse.jetty.util.FuturePromise.get(FuturePromise.java:130)
    at com.example.Client.main(Client.java:55)
    ... 6 more

これが私のpom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>http2client</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>http2client</name>
<url>http://maven.apache.org</url>
<dependencies>
    <dependency>
        <groupId>org.eclipse.jetty.http2</groupId>
        <artifactId>http2-client</artifactId>
        <version>9.3.0.M2</version>
    </dependency>
    <dependency>
        <groupId>org.mortbay.jetty.alpn</groupId>
        <artifactId>alpn-boot</artifactId>
        <version>8.1.3.v20150130</version>
        <scope>runtime</scope>
    </dependency>
</dependencies>
<build>
    <plugins>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>exec-maven-plugin</artifactId>
            <version>1.4.0</version>
            <executions>
                <execution>
                    <goals>
                        <goal>java</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <mainClass>com.example.Client</mainClass>
            </configuration>
        </plugin>
    </plugins>
</build>

そして、ここに私のプロジェクトディレクトリがあります

|-- pom.xml
|-- src
|   `-- main
|       `-- java
|           `-- com
|               `-- example
|                   `-- Client.java
`-- target
    |-- classes
    |   `-- com
    |       `-- example
    |           |-- Client$1.class
    |           `-- Client.class
    `-- maven-status
        `-- maven-compiler-plugin
            `-- compile
                `-- default-compile
                    |-- createdFiles.lst
                    `-- inputFiles.lst

---更新2---

タグを次のように変更pom.xml <build>しました: (明示的に JDK 8 を使用し、-Xbootclasspath を追加して、Jetty が提供する alpn-boot.jar を指すようにします)。Java 8 update 31 を使用しています

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.1</version>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>exec-maven-plugin</artifactId>
            <version>1.4.0</version>
            <executions>
                <execution>
                    <goals>
                        <goal>exec</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <executable>java</executable>
                <arguments>
                    <argument>-Xbootclasspath/p:/path/to/alpn-boot-8.1.3.v20150130.jar</argument>
                    <argument>-classpath</argument>
                    <classpath/>
                    <argument>com.example.Client</argument>
                </arguments>
            </configuration>
        </plugin>
    </plugins>
</build>

このコマンドを実行した後:

mvn clean compile exec:exec

https://webtide.com/ (Client.java ファイルのデフォルト ホスト)に接続しようとすると、このエラーが発生しました。

[INFO] --- exec-maven-plugin:1.4.0:exec (default-cli) @ http2client ---
2015-05-05 13:19:25.499:INFO::main: Logging initialized @153ms
Exception in thread "main" java.util.concurrent.TimeoutException
    at org.eclipse.jetty.util.FuturePromise.get(FuturePromise.java:130)
    at com.example.Client.main(Client.java:55)

そして、 https://nghttp2.org/に接続するときのこのエラー

[INFO] --- exec-maven-plugin:1.4.0:exec (default-cli) @ http2client ---
2015-05-05 13:29:12.106:INFO::main: Logging initialized @196ms
Exception in thread "main" java.util.concurrent.TimeoutException
    at java.util.concurrent.Phaser.awaitAdvanceInterruptibly(Phaser.java:800)
    at com.example.Client.main(Client.java:90)

---更新 3---

別のアプローチを取る: jetty プロジェクト全体のすべての master ブランチをプルし、次に Intellij プロジェクトを作成すると、jetty.project/jetty-http2/http2-clientパブリック サーバーhttps://webtide.comおよびhttps://nghttp2.orgで機能します。しかし、自己署名証明書 http2 サーバー (仮想マシンに常駐する nghttp2 + nginx を使用) でテストすると、このエラーが発生します。

2015-05-05 19:05:25.094:INFO::main: Logging initialized @220ms
Exception in thread "main" java.util.concurrent.ExecutionException: java.nio.channels.ClosedChannelException
    at org.eclipse.jetty.util.FuturePromise.get(FuturePromise.java:138)
    at org.eclipse.jetty.http2.client.Client.main(Client.java:55)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:483)
    at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140)
Caused by: java.nio.channels.ClosedChannelException
    at org.eclipse.jetty.http2.HTTP2Flusher.append(HTTP2Flusher.java:110)
    at org.eclipse.jetty.http2.HTTP2Session.frame(HTTP2Session.java:577)
    at org.eclipse.jetty.http2.HTTP2Session.frames(HTTP2Session.java:559)
    at org.eclipse.jetty.http2.client.HTTP2ClientConnectionFactory$HTTP2ClientConnection.onOpen(HTTP2ClientConnectionFactory.java:121)
4

2 に答える 2

3

質問で報告されたリンクは、 Jetty のHTTP/2トランスポートHttpClientを示しています。

JettyHttpClientは、HTTP 1.0、1.1、および 2.0 で動作する必要があるアプリケーションに汎用 HTTP API を公開しHttpClientます。HTTP/2 プッシュ リソースを受信するための API は公開しません。これは、HTTP/2 のみの固有のメカニズムであるためです。

本当に HTTP/2 API とやり取りしたい場合は、Jetty の を使用できますHTTP2Client。これは、HTTP/2 固有の低レベル API をアプリケーションに公開します。

リソースをプッシュする Web サイト (この場合はhttps://webtide.com )に接続する本格的な例は、こちら で確認できます

于 2015-05-04T10:39:25.670 に答える