com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration循环依赖问题记录

2年前 (2022) 程序员胖胖胖虎阿
332 0 0

com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration循环依赖问题记录

1、spring-boot-starter-parent版本太高,降低版本可用

原因:springboot 2.6禁止循环依赖

com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration循环依赖问题记录

当前2.7.1,请尝试降至2.6以下 

2、提高pagehelper版本至1.4.1,说法是此版本自己解决了问题

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

spring.main.allow-circular-references=true

4、pageHelper.jar版本与MyBatis版本不兼容,  没试过,见文章:

springboot pagehelper插件启动报错 [com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration]_白色星期五的博客-CSDN博客

5、排除依赖

com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration循环依赖问题记录

 找到循环依赖的部分,手动排除。本人最后采用的方法,可行。

6.懒加载

注入其他bean爆循环依赖可以在加上懒加载解决,对于循环引用的bean注入时添加Lazy(true)注解

每个人原因不一样,此处仅列举搜集和尝试过的部分方法,有错漏请指教。

参考文章:

springboot引入pagehelper实现分页出现报错com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration_一个过儿童节的小猿的博客-CSDN博客 解决boot2.6版本引发的PageHelper循环依赖com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration._suqinyi的博客-CSDN博客

 

相关文章

暂无评论

暂无评论...