返回顶部
首页 > 资讯 > 后端开发 > JAVA >SpringBoot中循环依赖报错解决---The dependencies of some of the beans in the application context form a cycle
  • 288
分享到

SpringBoot中循环依赖报错解决---The dependencies of some of the beans in the application context form a cycle

springbootjavaspring 2023-09-15 09:09:47 288人浏览 独家记忆
摘要

循环依赖: 循环依赖就是循环引用,也就是两个或则两个以上的bean互相依赖对方,形成闭环。比如A类中有B属性,B类中有A属性 一、报错信息 The dependencies of some of the beans in the appli

循环依赖:

循环依赖就是循环引用,也就是两个或则两个以上的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

--结束END--

本文标题: SpringBoot中循环依赖报错解决---The dependencies of some of the beans in the application context form a cycle

本文链接: https://lsjlt.com/news/408380.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作