Jersey客户端:使用ConnectionKeepAliveStrategy

时间:2018-05-31 00:02:59

标签: apache jersey jersey-client connector

在jersey客户端中为ApacheConnector应用ConnectionKeepAliveStrategy时需要帮助。

对于独立的Apache客户端,我们可以这样做 -

Reponse

但是在使用Jersey Client时我无法找到任何应​​用策略的方法。 尝试将上述要素类注册到WebClient,但没有帮助。

任何线索?

1 个答案:

答案 0 :(得分:0)

Jersey 2.29.1 added support for Apache HTTP Client ConnectionKeepAliveStrategy and ConnectionReuseStrategy。应该与ApacheConnector这样工作:

clientConfig.property(ApacheClientProperties.KEEPALIVE_STRATEGY, myStrategy);