springboot分页插件使用
时间: 2023-09-01 14:07:36 浏览: 132
Spring Boot提供了许多分页插件,其中最常用的是MyBatis的PageHelper插件。
使用步骤如下:
1. 在pom.xml中添加PageHelper依赖:
```
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.2.13</version>
</dependency>
```
2. 在MyBatis配置文件中配置PageHelper插件:
```
<plugins>
<plugin interceptor="com.github.pagehelper.PageInterceptor">
<property name="helperDialect" value="mysql"/>
</plugin>
</plugins>
```
3. 在需要分页的方法中,使用PageHelper.startPage()方法设置分页参数:
```
PageHelper.startPage(pageNum, pageSize);
List<User> userList = userDao.getUserList();
PageInfo<User> pageInfo = new PageInfo<>(userList);
```
其中,pageNum表示当前页码,pageSize表示每页显示的记录数。
4. 最后,将分页结果封装到PageInfo对象中返回给前端即可。
```
return new Result<>(ResultCode.SUCCESS, pageInfo);
```
以上就是使用PageHelper插件实现分页的全部步骤。
阅读全文