Java 9의 HTTP/2 클라이언트란 무엇입니까?
Http/2 클라이언트 API는 Java 9에서 도입되었습니다. Http/1.1보다 성능이 더 향상되었으며 서버 측 푸시 이벤트도 지원합니다. 이를 통해 웹사이트를 효율적으로 그리고 더 빠르게 탐색할 수 있습니다. Http/2 Client는 jdk.incubator.httpclient라는 인큐베이터 모듈입니다. 이는 모든 기능이 아직 완성되지 않았으며 향후 Java 버전에 새로운 변경 사항이 나타날 수 있음을 의미합니다. 모든 공개 API가 포함된 jdk.incubator.http 패키지를 내보냅니다.
Http/2 클라이언트를 사용하려면 incubator 모듈을 사용해야 하며, 아래와 같이 “–add-modules” 명령을 사용하여 httpclient module을 JShell에 전달하면 됩니다
<strong>C:\>jshell -v --add-modules jdk.incubator.httpclient | Welcome to JShell -- Version 9.0.4 | For an introduction type: /help intro</strong>
예
<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'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'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>
위 내용은 Java 9의 HTTP/2 클라이언트란 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

Video Face Swap
완전히 무료인 AI 얼굴 교환 도구를 사용하여 모든 비디오의 얼굴을 쉽게 바꾸세요!

인기 기사

뜨거운 도구

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

뜨거운 주제











일부 애플리케이션이 제대로 작동하지 않는 회사의 보안 소프트웨어에 대한 문제 해결 및 솔루션. 많은 회사들이 내부 네트워크 보안을 보장하기 위해 보안 소프트웨어를 배포 할 것입니다. ...

시스템 도킹의 필드 매핑 처리 시스템 도킹을 수행 할 때 어려운 문제가 발생합니다. 시스템의 인터페이스 필드를 효과적으로 매핑하는 방법 ...

데이터베이스 작업에 MyBatis-Plus 또는 기타 ORM 프레임 워크를 사용하는 경우 엔티티 클래스의 속성 이름을 기반으로 쿼리 조건을 구성해야합니다. 매번 수동으로 ...

IntellijideAultimate 버전을 사용하여 봄을 시작하십시오 ...

많은 응용 프로그램 시나리오에서 정렬을 구현하기 위해 이름으로 이름을 변환하는 솔루션, 사용자는 그룹으로, 특히 하나로 분류해야 할 수도 있습니다.

Java 객체 및 배열의 변환 : 캐스트 유형 변환의 위험과 올바른 방법에 대한 심층적 인 논의 많은 Java 초보자가 객체를 배열로 변환 할 것입니다 ...

데이터베이스 쿼리에 tkmyBatis를 사용하는 경우 쿼리 조건을 구축하기 위해 엔티티 클래스 변수 이름을 우아하게 가져 오는 방법이 일반적인 문제입니다. 이 기사는 고정 될 것입니다 ...

스프링 프로젝트 스타트 업에서 원형 종속성의 무작위성을 이해하십시오. Spring Project를 개발할 때는 프로젝트 시작시 원형 종속성으로 인한 무작위성에 직면 할 수 있습니다 ...
