prohibited

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

方框的意思就是: 不鼓励依赖循环引用,并且默认情况下禁止循环引用。更新应用程序以删除bean之间的依赖循环。作为最后的手段,可以通过设置spring.main来自动打破这个循环。允许循环引用为true。 这是由于Spring Boot2.6版本之后关闭了依赖循环引用,从而导致了以上错误。 解决方法 ......

3-springboot编译报错Relying upon circular references is discouraged and they are prohibited by default

如果是.properties文件,在文件中添加 spring.main.allow-circular-references=true 如果是.yml文件,则在文件中添加 spring: main: allow-circular-references:true文章参考:https://blog.csd ......
共2篇  :1/1页 首页上一页1下一页尾页