SpringBoot中循环依赖报错解决---The dependencies of some of the beans in the application context form a cycle
短信预约 -IT技能 免费直播动态提醒
循环依赖:
循环依赖就是循环引用,也就是两个或则两个以上的bean互相依赖对方,形成闭环。比如A类中有B属性,B类中有A属性
一、报错信息
The dependencies of some of the beans in the application context form a cycle:
二、解决方案
1、修改配置文件
根据Action中的提示
Action:Relying upon circular references is discouraged and they are prohibited by default. Update your application to remove the dependency cycle between beans. As a last resort, it may be possible to break the cycle automatically by setting spring.main.allow-circular-references to true.
不鼓励依赖循环引用,默认情况下禁止循环引用。更新应用程序以删除 Bean 之间的依赖关系循环。作为最后的手段,可以通过将 spring.main.allow-circular-references 设置为 true 来自动打破循环。因此可以在yml配置文件中设置来打破循环依赖
修改yml
spring: main: allow-circular-references: true
2、添加注解,延迟加载
这个是网上找到的解决方案,经过测试,问题顺利解决
由于在循环依赖中,Spring在初始化的时候不知道先加载哪个bean,因此可以通过使用@Lazy注解,放在其中一个bean上,让这个bean延迟加载,另一个bean就会先加载,进而解决循环依赖问题
来源地址:https://blog.csdn.net/m0_73813319/article/details/127265246
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341