我知道错误是自我解释的,但是当我从构造函数中移除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();
}
}
答案 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
工厂方法。