java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > SpringBoot启动报错属性循环依赖报错

SpringBoot启动报错属性循环依赖报错问题的解决

作者:Android_la

这篇文章主要介绍了SpringBoot启动报错属性循环依赖报错问题的解决方案,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教

SpringBoot启动报错属性循环依赖报错

问题背景

SpringBoot项目启动报错。报错提示为某个类的A属性与B属性循环有依赖了。

前言:SpringBoot启动过程中是默认支持循环依赖(即A类中有B属性,B类中有A属性),笔者还不清楚为什么会发生循环依赖报错。

代码场景

发生报错的代码场景如下所示:

public class X {
    @Autowrie
    private A a;
    @Autowrie
    private B b;
}
public class A {
    private B b;
}
public class B {
    private A a;
}

解决方案

有2种解决方案

懒加载注入

方案一是使用@Lazy懒加载,代码如下:

public class X {
    @Lazy
    @Autowrie
    private A a;
    @Autowrie
    private B b;
}

set方法注入

方案二是使用set方法,代码如下:

public class X {
    private A a;
    @Autowrite
    public void setA(A a) {
        this.a = a;
    }
    @Autowrie
    private B b;
}

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

循环依赖:

循环依赖就是循环引用,也就是两个或则两个以上的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就会先加载,进而解决循环依赖问题

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
阅读全文