Spring Autowire Resttemplate作为工厂Bean?

时间:2014-05-21 19:42:22

标签: java spring resttemplate

当我调试代码时,我发现创建Resttemplate需要时间。如果我通过Spring自动发送它会对性能产生什么影响? Spring是否为注入的bean提供工厂模式?

1 个答案:

答案 0 :(得分:0)

是Spring确实为注入的bean提供了一个工厂模式,但是在你的情况下,因为Spring的默认bean行为是一个单例,你只需要配置一次RestTemplate,然后注入任何需要它的类中。