美文网首页
踩坑合集

踩坑合集

作者: 适量哥 | 来源:发表于2022-06-27 21:19 被阅读0次

    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})
    

    相关文章

      网友评论

          本文标题:踩坑合集

          本文链接:https://www.haomeiwen.com/subject/ncuovrtx.html