MyBatis-PageHelper 是一个 MyBatis 插件,用于实现分页功能。要在 MyBatis 中使用 PageHelper 进行分页查询,请按照以下步骤操作:
添加依赖首先,需要在项目的 pom.xml 文件中添加 MyBatis-PageHelper 的依赖:
<groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> <version>5.2.0</version></dependency>配置 MyBatis-PageHelper在 MyBatis 的配置文件(通常是 mybatis-config.xml)中,添加 PageHelper 的配置:
... <plugins> <plugin interceptor="com.github.pagehelper.PageInterceptor"> <property name="helperDialect" value="mysql"/> <property name="reasonable" value="true"/> <property name="supportMethodsArguments" value="true"/> <property name="params" value="count=countSql"/> </plugin> </plugins> ...</configuration>其中,helperDialect 属性用于指定数据库方言,根据实际情况进行设置。
在对应的 Mapper 接口中,编写分页查询的方法。例如,假设有一个 UserMapper 接口,可以编写如下分页查询方法:
import com.github.pagehelper.Page;import com.github.pagehelper.PageInfo;public interface UserMapper { PageInfo<User> selectUsersByPage(int pageNum, int pageSize);}实现分页查询在对应的 Mapper XML 文件中,编写分页查询的 SQL 语句。例如,对于上面的 UserMapper 接口,可以编写如下分页查询 SQL 语句:
SELECT * FROM user LIMIT #{pageNum}, #{pageSize}</select>调用分页查询在 Service 层或 Controller 层中,调用 Mapper 接口的分页查询方法,传入分页参数。例如:
@Autowiredprivate UserMapper userMapper;public PageInfo<User> getUsersByPage(int pageNum, int pageSize) { return userMapper.selectUsersByPage(pageNum, pageSize);}这样,就可以实现在 MyBatis 中使用 PageHelper 进行分页查询了。注意,分页参数的传递和处理可能因项目而异,需要根据实际情况进行调整。


