问题原因:自从spring boot开始使用2.0x版本以上后,很多相应的依赖文件版本开始变化

该版本为spring-boot 1.4.1

        <dependency>
            <groupId>com.github.pagehelper</groupId>
            <artifactId>pagehelper</artifactId>
            <version>4.1.0</version>
        </dependency>

切换成对应的2.0的版本即可

        <dependency>
            <groupId>com.github.pagehelper</groupId>
            <artifactId>pagehelper-spring-boot-starter</artifactId>
            <version>1.2.5</version>
        </dependency>

相关文章:

  • 2021-05-13
  • 2022-03-02
  • 2022-02-20
  • 2021-12-22
  • 2022-12-23
  • 2021-04-01
  • 2021-11-28
  • 2021-07-28
猜你喜欢
  • 2021-09-28
  • 2022-01-14
  • 2021-12-23
  • 2022-01-11
  • 2021-11-08
  • 2021-06-18
相关资源
相似解决方案