【报错解决】The dependencies of some of the beans in the application context form a cycle:
Dependencies
A rewrite of the old legacy software "depends.exe" in C# for Windows devs to troubleshoot dll load dependencies issues.
项目地址:https://gitcode.com/gh_mirrors/de/Dependencies
免费下载资源
·
我是一名立志把细节都说清楚的博主,欢迎关注🎉 ~
原创不易,如果有帮助,还请鼓励个【赞】哦~ ❥(^_-)~
一、报错信息
The dependencies of some of the beans in the application context form a cycle:
securityConfig (field com.XXX.security.UserDetailServiceImpl com.XXX.config.SecurityConfig.userDetailService)
↓
userDetailServiceImpl (field com.XXX.service.SysUserService com.XXX.security.UserDetailServiceImpl.sysUserService)
┌─────┐
| sysUserServiceImpl (field com.XXX.service.SysMenuService com.XXX.service.impl.SysUserServiceImpl.sysMenuService)
↑ ↓
| sysMenuServiceImpl (field com.XXX.service.SysUserService com.XXX.service.impl.SysMenuServiceImpl.sysUserService)
└─────┘
二、背景说明
- Springboot
- Mybatis Puls
报错原因
- 两个类相互引用对方,导致Spring在初始化bean的时候不知道先初始化哪个,从而形成循环依赖注入。
报错解决
- 其中一个不要引用对方,避免循环依赖,代码解耦肯定是最优解。
- 任选其中一个使用@Lazy 注解。
- 延迟互相依赖的其中一个bean的加载,从而解决Spring在初始化bean的时候不知道先初始化哪个的问题。
// 任选一个加上@Lazy注解即可。
@Autowired
@Lazy
XXXService xxxService;
- 如果是SSM项目,可以在配置文件中加上lazy-init="true"属性。
<!-- 两个循环中的bean,任选一个使用lazy-init="true" -->
<bean id="xxxService1" class="com.xxx.xxxService1" lazy-init="true">
<constructor-arg ref="Service"/> </bean>
我是一名立志把细节都说清楚的博主,欢迎关注🎉 ~
原创不易,如果有帮助,还请鼓励个【赞】哦~ ❥(^_-)~
GitHub 加速计划 / de / Dependencies
27
1
下载
A rewrite of the old legacy software "depends.exe" in C# for Windows devs to troubleshoot dll load dependencies issues.
最近提交(Master分支:5 个月前 )
1997a400 - 3 年前
2f423539 - 3 年前
更多推荐
已为社区贡献4条内容
所有评论(0)