MyBatis PageHelper 是一个用于分页插件,它可以帮助我们在使用 MyBatis 进行查询时实现分页功能。
使用 PageHelper,需要先在项目中添加 PageHelper 的依赖。然后,在 MyBatis 的配置文件中配置 PageHelper 插件。
使用示例代码如下:
1.添加依赖:
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>latest-version</version>
</dependency>
2.配置 PageHelper: 在 MyBatis 的配置文件中添加 PageHelper 的插件配置,示例代码如下:
<plugins>
<plugin interceptor="com.github.pagehelper.PageInterceptor">
<property name="dialect" value="mysql"/>
<!-- 其他配置项如:helperDialect, reasonable, supportMethodsArguments, autoRuntimeDialect, params, rowBoundsWithCount, pageSizeZero, closeConn, defaultCount -->
</plugin>
</plugins>
3.使用 PageHelper 进行分页查询: 在需要进行分页查询的方法中,使用 PageHelper.startPage 方法指定页数和每页显示的数量,然后进行查询操作。示例代码如下:
import com.github.pagehelper.PageHelper;
import java.util.List;
public class UserDao {
public List<User> getUsers(int pageNum, int pageSize) {
// 使用 PageHelper.startPage 方法指定页数和每页显示的数量
PageHelper.startPage(pageNum, pageSize);
// 进行查询操作
List<User> userList = userMapper.selectUsers();
return userList;
}
}
以上就是使用 MyBatis PageHelper 进行分页查询的基本用法。我们可以通过配置 PageHelper 的属性来进行更多的自定义设置来满足实际需求。