在同一类中创建Bean的Spring Autoire结果为:请求的Bean当前处于创建错误中*
我知道这个错误是不言而喻的,但是当我将REST模板的设置从构造函数删除到@Autwire@Qualifier("myRestTemplate")私有RestTemplate REST模板时,它起作用了。
我只想知道,如果同一个类具有我试图自动绑定的内容的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();
}
}
解决方案
@Bean
常规@Component
批注类中的方法以称为精简模式的方式处理。
我不知道你为什么要这么做。如果您的xxx
类控制RestTemplate
的实例化,则没有太多理由不在构造函数中自己进行实例化(除非您打算将其公开给上下文的其余部分,但也有更好的解决方案)。
getRestTemplate
工厂方法,它需要一个xxx
的实例。若要创建xxx
的实例,它需要调用其构造函数,该构造函数需要RestTemplate
,但您的RestTemplate
当前正在构造中。
您可以通过设置getRestTemplate
static
来避免此错误。
@Bean(name="myRestTemplate")
public static RestTemplate getRestTemplate() {
return new RestTemplate();
}
在这种情况下,Spring不需要xxx
实例来调用getRestTemplate
工厂方法。
相关文章