我的问题是关于this one的问题,关于Spring Boot应用程序中的RestTemplate,当它具有以下bean定义时
@Bean
@RequestScope
public RestTemplate restTemplate(){
return new RestTemplate();
}
与具有默认原型范围的类似bean定义相比,如下所示
@Bean
public RestTemplate restTemplate(){
return new RestTemplate();
}
当连接到HTTP适配器类中时,RestTemplate bean的不同范围会有什么区别?
我认为通过引入更多的bean来执行任务将有助于提高性能,但是我对RestTemplate实现如何与较低级别的网络适配器进行交互以及不同的bean作用域是否会成为资源一无所知猪