是否可以使用 Apache HTTPClient 4.2.5 发出 HTTP/2 请求?
Is it possible to Make HTTP/2 requests with Apache HTTPClient 4.2.5?
我正在尝试使用 apache 客户端发出 HTTP/2 请求。以下版本是否可行?
迁移我的 Web 应用程序中的版本花费了我大量的代码更改。在 httpclient-4.2.5.jar?
中是否有任何解决方法来支持 HTTP/2 和 TLSv1.3
Apache libs i'm using:
httpclient-4.2.5.jar
httpcore-4.2.4.jar
httpmime-4.2.5.jar
提前致谢。
似乎只有版本 5 支持 HTTP 2。Apache Http Client Status
The main focus of the 5.0 series is providing full-featured support for HTTP/1.1 and HTTP/2 and ensuring full compliance with RFC 7230, RFC 7231, RFC 7540 and RFC 7541.
根据 Apache Http Client News 它仍然不是版本 5 的稳定版本。
但是,从 Java 11 开始,有一个新的 Http Client introduced 支持 HTTP 2。
It supports HTTP/1.1 and HTTP/2, both synchronous and asynchronous programming models
我正在尝试使用 apache 客户端发出 HTTP/2 请求。以下版本是否可行?
迁移我的 Web 应用程序中的版本花费了我大量的代码更改。在 httpclient-4.2.5.jar?
中是否有任何解决方法来支持 HTTP/2 和 TLSv1.3Apache libs i'm using:
httpclient-4.2.5.jar
httpcore-4.2.4.jar
httpmime-4.2.5.jar
提前致谢。
似乎只有版本 5 支持 HTTP 2。Apache Http Client Status
The main focus of the 5.0 series is providing full-featured support for HTTP/1.1 and HTTP/2 and ensuring full compliance with RFC 7230, RFC 7231, RFC 7540 and RFC 7541.
根据 Apache Http Client News 它仍然不是版本 5 的稳定版本。
但是,从 Java 11 开始,有一个新的 Http Client introduced 支持 HTTP 2。
It supports HTTP/1.1 and HTTP/2, both synchronous and asynchronous programming models