Maison  >  Article  >  Java  >  Qu'est-ce que le client HTTP/2 dans Java 9 ?

Qu'est-ce que le client HTTP/2 dans Java 9 ?

WBOY
WBOYavant
2023-09-01 15:29:02683parcourir

Java 9中的Http/2客户端是什么?

API Client HTTP/2 a été introduite dans Java 9. Il présente plus d'améliorations de performances que Http/1.1 et prend également en charge les événements push côté serveur. Cela rend le site Web efficace et plus rapide à parcourir. Http/2 Client est un module incubateur appelé jdk.incubator.httpclient, ce qui signifie que toutes les fonctionnalités ne sont pas encore finalisées et que de nouvelles modifications pourraient apparaître dans les futures versions de Java. Il exporte le package jdk.incubator.http qui contient toutes les API publiques.

Pour utiliser le Client Http/2 , nous devons utiliser le module incubateur, il nous suffit de passer le httpclient module dans JShell en utilisant la commande « –add-modules » comme indiqué ci-dessous

<strong>C:\>jshell -v --add-modules jdk.incubator.httpclient
| Welcome to JShell -- Version 9.0.4
| For an introduction type: /help intro</strong>

Exemple

<strong>jshell> import jdk.incubator.http.*;

jshell> HttpClient httpClient = HttpClient.newHttpClient();
httpClient ==> jdk.incubator.http.HttpClientImpl@534df152
| created variable httpClient : HttpClient

jshell> HttpRequest httpRequest = HttpRequest.newBuilder().uri(new URI("https: //www.google.com")).GET().build();
httpRequest ==> https://www.google.com GET
| created variable httpRequest : HttpRequest

jshell> HttpResponse httpResponse = httpClient.send(httpRequest, HttpResponse.BodyHandler.asString());
httpResponse ==> jdk.incubator.http.HttpResponseImpl@609cd4d8
| created variable httpResponse : HttpResponse

jshell> System.out.println(httpResponse.statusCode());
403</strong>
<strong>
jshell> System.out.println(httpResponse.body());
Apache HTTP Server Test Page powered by CentOS
Testing 123..
<p class="lead">This page is used to test the proper operation of the Apache HTTP server after it has been insta
lled. If you can read this page it means that this site is working properly. Thi
s server is powered by CentOS.</p><p class="lead">The website you just visited is either experiencing problems or is undergoing routine maintenance.</p>If you would like to let the administrators of this website know that you&#39;ve seen this page instead of the page you expected, you should send them e-mail. In general, mail sent to the name "webmast
er" and directed to the website&#39;s domain should reach the appropriate person.For example, if you experienced problems while visiting www.example.com, you should send e-mail to "webmaster@example
.com".
Are you the Administrator?
<p>You should add your website content to the directory /var/www/html/.</p><p>To prevent this page from ever being used, follow the instructions in the file /etc/httpd/conf.d/welcome.conf.</p>Promoting Apache and CentOS
</strong><p><strong>You are free to use the images below
on Apache and CentOS Linux powered HTTP servers. Thanks for using Apache and CentOS!</strong></p>

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer