为Spring RestTemplate设置“Host”标头不起作用

时间:2017-04-05 06:18:35

标签: java spring rest resttemplate

我想通过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设置为我想要的值?

1 个答案:

答案 0 :(得分:1)

也许这会有所帮助。我不知道底层的http调用是通过HttpUrlConnection进行的,但将sun.net.http.allowRestrictedHeaders设置为true可能值得尝试。

请参阅: