当前位置:   article > 正文

解决SpringBoot集成分页插件pagehelper出现的循环依赖问题_springboot中pagehelper没有依赖项

springboot中pagehelper没有依赖项

版权声明

  • 本文原创作者:谷哥的小弟
  • 作者博客地址:http://blog.csdn.net/lfdfhl

问题描述

SpringBoot2.6.7中集成分页插件com.github.pagehelper出现了循环依赖问题,报错信息如下:

Relying upon circular references is discouraged and they are prohibited by default. Update your application to remove the dependency cycle between beans. As a last resort, it may be possible to break the cycle automatically by setting spring.main.allow-circular-references to true.

图示如下:

在这里插入图片描述

解决方案

将com.github.pagehelper版本改为1.4.1即可。

代码如下:

        <!--分页依赖-->
        <dependency>
            <groupId>com.github.pagehelper</groupId>
            <artifactId>pagehelper-spring-boot-starter</artifactId>
            <version>1.4.1</version>
        </dependency>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/88379
推荐阅读
相关标签
  

闽ICP备14008679号