springbootpagehelper分页失效pagesize
时间: 2023-11-11 08:00:43 浏览: 108
可能是因为你没有正确配置 PageHelper 插件。请检查以下几点:
1. 确认已经在 pom.xml 中引入了 PageHelper 依赖,并且版本号与 Spring Boot 版本兼容。
2. 在 Spring Boot 的配置文件中,添加以下配置:
```
# 开启 PageHelper 分页插件
mybatis.configuration.properties.helperDialect=mysql
mybatis.configuration.properties.reasonable=true
mybatis.configuration.properties.supportMethodsArguments=true
mybatis.configuration.properties.params=count=countSql
mybatis.configuration.properties.autoRuntimeDialect=true
mybatis.configuration.properties.returnPageInfo=check
```
3. 在需要分页的方法上添加 `@PageHelper` 注解,并指定分页参数,例如:
```
@PageHelper(pageNum = 1, pageSize = 10)
public List<User> getUsers() {
return userDao.getUsers();
}
```
如果以上步骤都正确,但仍然无法分页,可以尝试升级 PageHelper 版本或者查看日志排查问题。
阅读全文