返回顶部
首页 > 资讯 > 后端开发 > JAVA >【Spring循环依赖的解决】The dependencies of some of the beans in the application context form a cycle
  • 406
分享到

【Spring循环依赖的解决】The dependencies of some of the beans in the application context form a cycle

springjavamybatis 2023-10-26 15:10:50 406人浏览 薄情痞子
摘要

1.报错信息 2.问题描述 启动报错: The dependencies of some of the beans in the application context fORM a cycle:

1.报错信息

在这里插入图片描述

2.问题描述

启动报错: The dependencies of some of the beans in the application context fORM a cycle:

3. 报错原因

两个类相互引用对方,导致spring在初始化bean的时候不知道先初始化哪个,从而形成循环依赖注入。
类A依赖类B,类B也依赖类A,这种情况就会出现循环依赖。

Bean A → Bean B → Bean A

上面是比较容易发现的循环依赖,也有更深层次的循环依赖。

Bean A → Bean B → Bean C → Bean D → Bean E → Bean A

4. 解决办法

方法1:代码解耦

根据报错的提示重新设计类的依赖,让其中一个类不要引用对方,避免循环依赖

方法2: @Lazy注解

不使用基于构造函数的依赖注入
在字段上使用@Autowired注解,让Spring决定在合适的时机注入。
用基于setter方法的依赖注射取代基于构造函数的依赖注入来解决循环依赖。
在@Autowired注解上方加上@Lazy注解(延迟加载)

两种办法都可以解决循环依赖的问题。

来源地址:https://blog.csdn.net/qq_42784646/article/details/129820424

--结束END--

本文标题: 【Spring循环依赖的解决】The dependencies of some of the beans in the application context form a cycle

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

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

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

  • 微信公众号

  • 商务合作