赞
踩
突然项目中的分页不起作用了,后台代码:
1、PageHelper.startPage(pageIndex, pageSize)要放在要分页的上面,也没错
后来一想,是springboot做了升级。然后把pagehelper切换成对应的2.0的版本即可。
- <dependency>
- <groupId>com.github.pagehelper</groupId>
- <artifactId>pagehelper</artifactId>
- <version>4.2.1</version>
- </dependency>
切换成2.0版本:
- <dependency>
- <groupId>com.github.pagehelper</groupId>
- <artifactId>pagehelper-spring-boot-starter</artifactId>
- <version>1.2.5</version>
- </dependency>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。