春季:注入初始化的RestTemplates

时间:2018-10-03 11:03:58

标签: spring spring-boot

当前我有几个服务向其他服务发出请求。

为了构建请求,我正在使用Spring RestTemplate s。

反正有没有注入用某些标头初始化的RestTemplate?

我在考虑工厂喷油器。

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

我认为您处理问题的方式不正确。

与其注入RestTemplate, 考虑注入HttpEntity<?>

在配置HttpEntity<?>方法中设置@Bean bean。

然后使用任何一种RestTemplate.exchange()方法都适合发送您所需的请求。

编辑
exchange方法发送HTTP消息并返回响应。

这里是RestTemplate JavaDoc Page