我想通过Spring RestTemplate方法使用exchange发送HTTP请求。
第三个参数是HttpEntity
的实例,它允许设置请求的标题/正文。我尝试了以下代码段:
import org.springframework.http.*;
import org.springframework.web.client.RestTemplate;
public class Connector {
public static void main(String[] args) {
HttpHeaders headers = new HttpHeaders();
headers.set("Host", "www.example.com");
headers.set("User-Agent", "whatever");
RestTemplate restTemplate = new RestTemplate();
ResponseEntity<String> responseEntity = restTemplate.exchange(
"http://httpbin.org/headers", HttpMethod.GET,
new HttpEntity<String>(null, headers), String.class);
System.out.println(responseEntity.getBody());
}
}
请注意,http://httpbin.org/headers是一个简单的HTTP请求&amp;响应服务,(在本例中)返回HTTP标头。
运行Java代码的结果如下:
{
"headers": {
"Accept": "text/plain, */*",
"Connection": "close",
"Host": "httpbin.org",
"User-Agent": "whatever"
}
}
如您所见,User-Agent
设置为我想要的,但Host
不是。
如何将
Host
设置为我想要的值?
答案 0 :(得分:1)
也许这会有所帮助。我不知道底层的http调用是通过HttpUrlConnection进行的,但将sun.net.http.allowRestrictedHeaders设置为true可能值得尝试。
请参阅: