欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Bean with name ‘xxx‘ has been injected into other beans

程序员文章站 2022-04-15 13:29:34
...

更新代码以后,打完jar包,启动失败报Bean with name 'xxx' has been injected into other beans异常

项目里面两个类循环引用导致spring不知道先去加载哪个类

public class Demo1{
    @Autowired 
    Demo2 demo2;
}  

public class Demo2{ 
    @Autowired 
    Demo1 demo1;
} 

添加@Lazy懒加载解决

相关标签: 异常解决方案