使用httpclient循环调用测试接口,但是执行了两三次后就没有继续执行。
代码如下:
CloseableHttpClient httpclient = HttpClients.createDefault();
HttpGet httpGet = new HttpGet("xxxUrl");
CloseableHttpResponse response = null;
try {
for (int i = 0;i < 10000;i++){
System.out.println("======================="+i);
response = httpclient.execute(httpGet);
httpGet.releaseConnection();//这里是后来加上的,加上之后循环执行HttpClient正常
}
response = httpclient.execute(httpGet);
} catch (Exception e){
e.printStackTrace();
} finally {
if (response != null) {
response.close();
}
httpclient.close();
}
问题原因:由于之前写的时候没有这行代码:
httpGet.releaseConnection();
释放连接资源,添加这行代码以后问题解决。
本文介绍了一个关于使用HttpClient进行接口测试时遇到的问题及解决方案。问题表现为在进行大量循环调用时,程序会在几次调用后停止执行。通过在每次请求后添加连接释放代码解决了该问题。
490

被折叠的 条评论
为什么被折叠?



