pomRelying upon circular references is discouraged and they are prohibited by default.

发布时间 2023-07-24 22:31:49作者: 每月工资一万八

 

方框的意思就是:

不鼓励依赖循环引用,并且默认情况下禁止循环引用。更新应用程序以删除bean之间的依赖循环。作为最后的手段,可以通过设置spring.main来自动打破这个循环。允许循环引用为true。

这是由于Spring Boot2.6版本之后关闭了依赖循环引用,从而导致了以上错误。

解决方法

可以在application.xml配置文件中的spring下添加配置来解决问题,即:

 

main:
#    解决升级Spring Boot2.6后,因依赖循环引用导致启动时报错的问题
    allow-circular-references: true