httpclient无法发送两个以上的请求

时间:2015-04-09 09:42:09

标签: apache tomcat6 apache-httpclient-4.x

我正在编写客户端 - 服务器应用程序。我在客户端使用CloseableHttpClient来发送GET请求。我想向服务器发送5个GET请求。但是,只有我收到前两个请求的回复。   这是我的客户代码:

 import java.io.IOException;

import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;


public class Test {

    public static void main(String[] args) {
        HttpGet getreq = new HttpGet("http://shalakha:8089/Gateway/ReverseInvokeListener");
        CloseableHttpClient c1 = HttpClients.createMinimal();
        try {
            for(int i=0;i<5;i++){
            CloseableHttpResponse resp = c1.execute(getreq);
            System.out.println(resp);
        }
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

}

以下是我的回复:

HTTP/1.1 200 OK [Server: Apache-Coyote/1.1, Set-Cookie: JSESSIONID=0D4ABDC362FEC3030A5EE3709F3096FD; Path=/Gateway, CLIENTREQ: NO, Content-Length: 0, Date: Thu, 09 Apr 2015 09:22:22 GMT]
HTTP/1.1 200 OK [Server: Apache-Coyote/1.1, CLIENTREQ: NO, Content-Length: 0, Date: Thu, 09 Apr 2015 09:22:26 GMT]

其中'CLIENTREQ'是我在发送响应时从服务器端添加的CUSTOM标头。

关于什么必须导致这个的任何指针? connectionTimeout中的server.xml设置为“-1”,表示无限超时。

1 个答案:

答案 0 :(得分:5)

您的代码泄漏了所有可用的连接(默认情况下为两个),并且已经耗尽了连接池。您需要关闭响应对象以确保连接被释放回池中。

http://hc.apache.org/httpcomponents-client-4.4.x/tutorial/html/fundamentals.html#d5e145