5

For some problem that we couldn't solve, I want to disable keep alive on Apache HttpClient 3.1. However, I couldn't find any resource on the Internet for that. Do you know how to do it?

4

1 回答 1

6

您可以在您的方法上禁用 HTTP 1.1 支持,即httpMethod.setHttp11(false);,您将失去一些其他功能。

您还可以尝试强制连接标头要求服务器在响应后关闭连接:httpMethod.setRequestHeader("Connection", "close").

于 2013-05-29T07:30:42.797 回答