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:

SpringBoot中循环依赖报错解决---The dependencies of some of the beans in the application context form a cycle_第1张图片

 二、解决方案

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就会先加载,进而解决循环依赖问题

 
 

你可能感兴趣的:(项目Bug,spring,boot,java,spring)