我必须在我的项目中向第三方服务器发送大量的http请求。而在每个响应中约有30kb的html。所以,我想节省流量。有没有办法不加载响应?现在我使用RestTemplate发送请求,但如果需要使用其他东西,它不是问题。感谢。
修改
现在我发送这样的请求:
public ResponseEntity<String> sendPost(Map<String, String> headers, Map<String, String> params, String... url)
{
String urlStr = url.length != 0 ? url[0] : BASE_URL + "index.php";
HttpEntity<String> entity = new HttpEntity<>(mapToString(params), mapToHeaders(headers));
RestTemplate restTemplate = new RestTemplate();
return restTemplate.postForEntity(urlStr, entity, String.class);
}