Python 官方文档:入门教程 => 点击学习
目录一、序言二、问题复原1、代码说明2、错误示例三、问题解决1、粗暴解决2、优雅解决四、小结一、序言 SpringBoot 2.6.x不推荐使用循环依赖,这是一个好消息,spring
SpringBoot 2.6.x
不推荐使用循环依赖,这是一个好消息,springBoot从底层逐渐引导开发者书写规范的代码,同时也是个忧伤的消息,循环依赖的应用场景实在是太广泛了。
如果从低版本升级到2.6.x
,那么很大概率遇到的第一个问题便是循环依赖问题。
下面风格的代码比较普遍:两个类都有调用对方方法的需求,因此很容易写成循环引用。
@Service
public class TbDeptServiceImpl extends ServiceImpl<TbDeptMapper, TbDept> implements ITbDeptService {
@Autowired
private ITbStaffService staffService;
}
@Service
public class TbStaffServiceImpl extends ServiceImpl<TbStaffMapper, TbStaff> implements ITbStaffService {
@Autowired
private ITbDeptService deptService;
}
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.
Despite circular references being allowed, the dependency cycle between beans could not be broken. Update your application to remove the dependency cycle.
最简单的方式是在全局配置文件中允许循环引用存在,此属性默认值为false
,显示声明为true
,可回避项目启动时控制台循环引用异常。
spring:
main:
allow-circular-references: true
Spring官方默认禁止使用循环依赖,尽管留有可选配置,允许开发者继续使用循环依赖。
Spring官方的初心是不希望开发者编写循环依赖的代码,也就是说未来的某个版本可能强制不得使用循环依赖,因此逐渐在新项目中消除循环依赖是不得不面对的问题。
使用方法的返回值获取实例对象,替换通过成员变量注入实例对象。
@Service
public class TbDeptServiceImpl extends ServiceImpl<TbDeptMapper, TbDept> implements ITbDeptService {
public ITbStaffService getStaffService(){
return SpringUtils.getBean(ITbStaffService.class);
}
}
@Service
public class TbStaffServiceImpl extends ServiceImpl<TbStaffMapper, TbStaff> implements ITbStaffService {
public ITbDeptService getDeptService(){
return SpringUtils.getBean(ITbDeptService.class);
}
}
其中需要使用如下依赖,此依赖是笔者抽离出来的公共依赖
,可跨项目使用。
<dependency>
<groupId>xin.altitude.cms.common</groupId>
<artifactId>ucode-cms-common</artifactId>
<version>1.3.4</version>
</dependency>
如果找不到此依赖,很大可能是阿里云Maven仓库尚未同步,在项目中强制使用Maven中央仓库即可。
<repositories>
<repository>
<id>public</id>
<name>maven nexus</name>
<url>https://repo1.maven.org/maven2/</url>
<snapshots>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>
Spring生态作为广泛使用的框架,俨然成为Java企业级应用主流标准,其微小的变化对整合生态带来不可估量的影响。从跟随者转化为引导者,果断禁止循环依赖问题,体现的是作为引导者的担当。
循环引用使用习惯了,初步看起来代码没毛病,仔细想想是不合理的设计。循环依赖的直接表现是你中有我,我中有你
,从对象的设计上令人费解。
最为开发者时刻关注底层框架的变动,将会在应用层收益。这里所说的底层框架是指jdk、Spring生态、Apache、知名大厂开源并广泛被应用的框架,比如guava等。
到此这篇关于SpringBoot2.6.x默认禁用循环依赖后的应对策略的文章就介绍到这了,更多相关SpringBoot2.6.x禁用循环依赖内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: SpringBoot2.6.x默认禁用循环依赖后的问题解决
本文链接: https://lsjlt.com/news/140151.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0