使用带有功能区的Eureka不会发送自定义标头

时间:2015-05-27 14:07:32

标签: spring-cloud netflix netflix-eureka

当前项目使用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时,不再发送自定义标头。

这是否存在安全原因?这是一个缺陷吗?

1 个答案:

答案 0 :(得分:1)

它是bug that has been fixed。它只需要被释放。