Relying upon circular references is discouraged and they are prohibited by default. Update your appl

升级到SpringBoot 2.6后,由于默认禁止依赖循环引用,应用启动时会报错。为了解决这个问题,可以更新代码以消除bean间的循环依赖。如果无法避免,可以在`application.yml`或`bootstrap.yml`配置文件中设置`spring.main.allow-circular-references: true`来允许循环引用。这将允许应用启动,但建议长期解决方案是重构代码以消除循环依赖。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

解决循环引用导致启动时报错的问题

  1. 因为 Spring Boot 升级2.6后,依赖循环引用是不鼓励的,默认情况下是禁止的。更新应用程序以删除bean之间的依赖循环。作为最后的手段,可以通过设置spring.main来自动打破循环。

***************************
APPLICATION FAILED TO START
***************************

Description:

The dependencies of some of the beans in the application context form a cycle:

┌──->──┐
|  com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration
└──<-──┘


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.

Disconnected from the target VM, address: '127.0.0.1:10340', transport: 'socket'

Process finished with exit code 1

问题解决

  1. 可以通过在 application.yml 或者 bootstrap.yml配置文件中配置如下属性
  # 解决项目中循环引用
  spring:
	  main:
	    allow-circular-references: true
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

智汇探长

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值