RestTemplate是线程安全的吗

时间:2018-11-05 08:53:32

标签: spring-boot concurrency resttemplate

我正在Visibility方法中构造一次<local:AV_Credentials Visibility="{Binding Path=DataContext.Cred, RelativeSource={RelativeSource AncestorType=UserControl}}" DataContext="{Binding AV_Context}"/> 对象,并使用该实例从我的应用程序进行所有HTTP调用。例如:

RestTemplate

从文档中尚不清楚以这种方式使用@PostConstruct是否是线程安全的。

根据this blog article,它是:

  

例如,这意味着RestTemplate一旦构建便是线程安全的,并且您可以使用回调来自定义其操作。

但是,在查看exchange() method的Javadocs时,没有明确列出该方法是线程安全的。

我们应该对此代码进行更改以使其成为线程安全的,还是按预期工作?

我们正在使用Spring Boot 1.5.10.RELEASE。

0 个答案:

没有答案