在 httpclient5 中实现 HttpRequestRetryHandler 和 RequestBuilder
Implement HttpRequestRetryHandler and RequestBuilder in httpclient5
我计划更新我的项目以使用 httpclient5。
之后我在 httpclient5(5.0、5.01 和 5.0.2)中识别,它们不再有 class HttPRequestRetryHandler 和 RequestBuilder。
有什么方法或更新可以在 http5 中不使用这些 class,或者我们有一些具有相同功能的替代品吗?
改用org.apache.hc.client5.http.HttpRequestRetryStrategy
。
对经典传输使用 org.apache.hc.core5.http.io.support.ClassicRequestBuilder
,对异步传输使用 org.apache.hc.core5.http.nio.support.AsyncRequestBuilder
。
通常,从 Apache HttpClient 4.5.x 迁移到 Apache HttpClient 5.x
时,此资源可能会很有用
我计划更新我的项目以使用 httpclient5。
之后我在 httpclient5(5.0、5.01 和 5.0.2)中识别,它们不再有 class HttPRequestRetryHandler 和 RequestBuilder。
有什么方法或更新可以在 http5 中不使用这些 class,或者我们有一些具有相同功能的替代品吗?
改用
org.apache.hc.client5.http.HttpRequestRetryStrategy
。对经典传输使用
org.apache.hc.core5.http.io.support.ClassicRequestBuilder
,对异步传输使用org.apache.hc.core5.http.nio.support.AsyncRequestBuilder
。
通常,从 Apache HttpClient 4.5.x 迁移到 Apache HttpClient 5.x
时,此资源可能会很有用