在同一个类中创建Bean的Spring Autowire导致:请求的bean当前正在创建错误*

时间:2017-06-22 23:38:42

标签: java spring autowired

我知道错误是自我解释的,但是当我从构造函数中移除rest模板的设置到@Autowired @Qualifier(“myRestTemplate”)私有RestTemplate restTemplate时,它可以工作。

如果相同的类具有我想要自动装配的bean的bean定义,只想知道如何在构造函数中执行此操作?

  

org.springframework.beans.factory.BeanCurrentlyInCreationException:   创建名为“xxx”的bean时出错:请求的bean当前位于   创作:是否存在无法解析的循环引用?

@Component
public class xxx {

 private RestTemplate restTemplate;

 @Autowired
 public xxx(@Qualifier("myRestTemplate") RestTemplate restTemplate) {
   this.restTemplate = restTemplate;
 }

 @Bean(name="myRestTemplate")
 public RestTemplate getRestTemplate() {
    return new RestTemplate();
 }

}

1 个答案:

答案 0 :(得分:1)

常规@Component带注释类中的

@Bean方法在所谓的 lite-mode 中处理。

我不知道你为什么要这样做。如果你的xxx类控制RestTemplate的实例化,那么没有太多理由不在构造函数中自己完成它(除非你的意思是将它暴露给其余的上下文,但是然后有更好的解决方案)。

在任何情况下,要让Spring调用getRestTemplate工厂方法,它需要一个xxx的实例。要创建xxx的实例,需要调用其构造函数,该构造函数需要RestTemplate,但您的RestTemplate当前正在构建中。

您可以通过getRestTemplate static来解决此错误。

@Bean(name="myRestTemplate")
public static RestTemplate getRestTemplate() {
    return new RestTemplate();
}

在这种情况下,Spring不需要xxx实例来调用getRestTemplate工厂方法。