在jersey客户端中为ApacheConnector应用ConnectionKeepAliveStrategy时需要帮助。
对于独立的Apache客户端,我们可以这样做 -
Reponse
但是在使用Jersey Client时我无法找到任何应用策略的方法。 尝试将上述要素类注册到WebClient,但没有帮助。
任何线索?
答案 0 :(得分:0)
Jersey 2.29.1 added support for Apache HTTP Client ConnectionKeepAliveStrategy
and ConnectionReuseStrategy
。应该与ApacheConnector
这样工作:
clientConfig.property(ApacheClientProperties.KEEPALIVE_STRATEGY, myStrategy);