The dependencies of some of the beans in the application context form a cycle:
出现这种问题,如果你用其他方法怎么都处理不掉,可以使用最后的方法:
解决方案:
在配置文件增添一行配置即可:
properties 配置文件
spring.main.allow-circular-references=true
yml 配置文件
spring:main:allow-circular-references:true
除非你引入一个jar包导致的循环依赖,其他的循环依赖不建议你使用该方法。