当前位置:   article > 正文

Spring boot PageHelper.startPage(pageIndex, pageSize)分页无效_pagehelper.startpage不起效果

pagehelper.startpage不起效果

突然项目中的分页不起作用了,后台代码:

1、PageHelper.startPage(pageIndex, pageSize)要放在要分页的上面,也没错

后来一想,是springboot做了升级。然后把pagehelper切换成对应的2.0的版本即可。

  1. <dependency>
  2. <groupId>com.github.pagehelper</groupId>
  3. <artifactId>pagehelper</artifactId>
  4. <version>4.2.1</version>
  5. </dependency>

切换成2.0版本:

  1. <dependency>
  2. <groupId>com.github.pagehelper</groupId>
  3. <artifactId>pagehelper-spring-boot-starter</artifactId>
  4. <version>1.2.5</version>
  5. </dependency>

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/725242
推荐阅读
相关标签
  

闽ICP备14008679号