当前项目使用spring-cloud-starter-eureka版本1.0.0.RELEASE。
我正在使用功能区连接到其他一些服务并需要自定义标头。
@Autowired
private RestTemplate restTemplate;
. . .
ResponseEntity result = this.restTemplate.exchange("https://FooServices/foos/daily",
HttpMethod.GET,
new HttpEntity(getSpecialHeaders()),
FooView[].class,
new Object[0]);
该代码适用于Spring Cloud 1.0.0版。但是,当我移动到1.0.1或1.0.2时,不再发送自定义标头。
这是否存在安全原因?这是一个缺陷吗?