赞
踩
我使用的版本:
导致原因:
springboot2.6禁止循环依赖
法一:
降低springboot版本到2.6以下
法二:
升级pagehelper 的版本到1.4.1。这个是pagehelper 自己解决的
<!--pagehelper分页插件-->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.4.1</version>
</dependency>
法三:
配置文件配置
spring.main.allow-circular-references=true
补充:
假设注入其他bean爆循环依赖可以在加上懒加载解决
对于循环引用的bean注入时添加Lazy(true)注解
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。