1、pagehelper 循环引用问题
## 错误日志
The dependencies of some of the beans in the application context form a cycle:
┌──->──┐
| com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration
└──<-──┘
pagehelper 版本 1.2.5
Springboot 版本 2.7.0
解决方法:
- 方法一
## 启动时,忽略这个类
@SpringBootApplication(exclude = {PageHelperAutoConfiguration.class})
- 方法二
Pagehelper踩坑笔记
网友评论