Как включить http1.1 и http2.0 вместе в приложении REST с весенней загрузкой в ​​tomcat 9.0.14 - PullRequest
0 голосов
/ 30 января 2019

Я включил http 2.0 с SSL в приложении REST с начальной загрузкой 2.1.2 со встроенным tomcat, используя конфигурацию "server.http2.enabled = true" и другие конфигурации SSL в файле application.properties.Работает нормально.Когда клиент http2 публикует запрос https, мой сервер обрабатывает и отвечает правильно (используется http-клиент java 9).Но когда версия http-клиента повысилась до 1.1, появляется следующее исключение -

WARNING: Using incubator modules: jdk.incubator.httpclient
java.util.concurrent.ExecutionException: java.io.IOException: Engine is closed
    at java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:395)
    at java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2022)
    at KnHttp2Client.sendGet(KnHttp2Client.java:81)
    at KnHttp2Client.main(KnHttp2Client.java:113)
Caused by: java.io.IOException: Engine is closed

Я попытался опубликовать запрос https с помощью apache-http-client4.5.7, но все равно я получаю ниже Исключение

Jan 30, 2019 4:45:12 PM org.apache.http.impl.execchain.RetryExec execute
INFO: I/O exception (org.apache.http.NoHttpResponseException) caught when processing request to {s}->https://localhost:8443: The target server failed to respond
Jan 30, 2019 4:45:12 PM org.apache.http.impl.execchain.RetryExec execute
INFO: Retrying request to {s}->https://localhost:8443
org.apache.http.NoHttpResponseException: localhost:8443 failed to respond
    at org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(DefaultHttpResponseParser.java:141)
    at org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(DefaultHttpResponseParser.java:56)
    at org.apache.http.impl.io.AbstractMessageParser.parse(AbstractMessageParser.java:259)
    at org.apache.http.impl.DefaultBHttpClientConnection.receiveResponseHeader(DefaultBHttpClientConnection.java:163)
    at org.apache.http.impl.conn.CPoolProxy.receiveResponseHeader(CPoolProxy.java:157)
    at org.apache.http.protocol.HttpRequestExecutor.doReceiveResponse(HttpRequestExecutor.java:273)
    at org.apache.http.protocol.HttpRequestExecutor.execute(HttpRequestExecutor.java:125)
    at org.apache.http.impl.execchain.MainClientExec.execute(MainClientExec.java:272)
    at org.apache.http.impl.execchain.ProtocolExec.execute(ProtocolExec.java:185)
    at org.apache.http.impl.execchain.RetryExec.execute(RetryExec.java:89)
    at org.apache.http.impl.execchain.RedirectExec.execute(RedirectExec.java:110)
    at org.apache.http.impl.client.InternalHttpClient.doExecute(InternalHttpClient.java:185)
    at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:83)
    at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:108)
    at apacheclient.KnConnPoolClient$1.run(KnConnPoolClient.java:48)
    at java.base/java.lang.Thread.run(Thread.java:844)


After setting setRetryHandler(new DefaultHttpRequestRetryHandler(0, true)) got below exception <br>
org.apache.http.NoHttpResponseException: localhost:8443 failed to respond
    at org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(DefaultHttpResponseParser.java:141)
    at org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(DefaultHttpResponseParser.java:56)
    at org.apache.http.impl.io.AbstractMessageParser.parse(AbstractMessageParser.java:259)
    at org.apache.http.impl.DefaultBHttpClientConnection.receiveResponseHeader(DefaultBHttpClientConnection.java:163)
    at org.apache.http.impl.conn.CPoolProxy.receiveResponseHeader(CPoolProxy.java:157)
    at org.apache.http.protocol.HttpRequestExecutor.doReceiveResponse(HttpRequestExecutor.java:273)
    at org.apache.http.protocol.HttpRequestExecutor.execute(HttpRequestExecutor.java:125)
    at org.apache.http.impl.execchain.MainClientExec.execute(MainClientExec.java:272)
    at org.apache.http.impl.execchain.ProtocolExec.execute(ProtocolExec.java:185)
    at org.apache.http.impl.execchain.RetryExec.execute(RetryExec.java:89)
    at org.apache.http.impl.execchain.RedirectExec.execute(RedirectExec.java:110)
    at org.apache.http.impl.client.InternalHttpClient.doExecute(InternalHttpClient.java:185)
    at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:83)
    at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:108)
    at apacheclient.KnConnPoolClient$1.run(KnConnPoolClient.java:48)
    at java.base/java.lang.Thread.run(Thread.java:844)

Рабочий клиент для с http 2.0

{HttpClient httpClient = HttpClient.newBuilder()
            .version(HttpClient.Version.HTTP_2) 
            .build();
HttpRequest request = HttpRequest.newBuilder()
            .uri(URI.create("https://localhost:8443/....."))
            .GET()
            .build();
CompletableFuture<HttpResponse<String>> resp = httpClient.sendAsync(request, HttpResponse.BodyHandler.asString()); }

Когда версия http-клиента изменяется на 1.1, как показано ниже, она не работает

{HttpClient httpClient = HttpClient.newBuilder()
                .version(HttpClient.Version.HTTP_1_1) 
                .build();}

Код ниже клиента с клиентом Apacheтакже не работает

{
final CloseableHttpClient httpclient = 
HttpClients.custom().setConnectionManager(pool).build();
final String url = "https://localhost:8443/....";
    for (int i = 0; i < 1; i++) {
        new Thread(new Runnable() {

            public void run() {
                try {                        
                    HttpGet httpGet = new HttpGet(url);
                    CloseableHttpResponse response =httpclient.execute(httpGet);
                    HttpEntity entity = response.getEntity();
                    System.out.println(EntityUtils.toString(entity));                        
                    EntityUtils.consume(entity);
                    response.close();
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        }).start();
    } 

Я ожидаю, что сервер, который поддерживает http 2.0, должен также поддерживать http 1.1.

1 Ответ

0 голосов
/ 30 января 2019

Это известная проблема в Spring Boot, см. выпуск # 15764 .

В настоящее время поддерживается только http / 2, когда настроен Tomcat, но Jetty и Undertow поддерживают оба варианта.Пока эта проблема не решена, вы можете переключиться на Jetty или Undertow в качестве обходного пути.

...