如何使用PageHelper进行分页

2年前 (2022) 程序员胖胖胖虎阿
229 0 0

1.pagehelper的功能

·实现数据库的分页查询

2.操作步骤

2.1在pom文件中加入maven依赖

<dependency>

<groupId>com.github.pagehelper</groupId>

<artifactId>pagehelper</artifactId>

<version>5.1.10</version>

</dependency>

2.2在mybatis主配置文件在加入plugin

·一定要注意这个插件的代码是写在environment配置的上面,而且是写在mybatis的主配置文件中,不是写在pom文件中的。

<plugins>

<plugin interceptor=”com.github.pagehelper.PageInterceptor”/>

</plugins>

2.3在查询的代码中调用方法

     PageHelper.startPage(1,3);

     List<Student> students = dao.selectAll();

3.操作案例

1)在pom文件在加入 maven依赖

如何使用PageHelper进行分页

2)在mybatis主配置文件中加入插件

如何使用PageHelper进行分页

3)在代码中引入分页方法

如何使用PageHelper进行分页

4)测试结果

如何使用PageHelper进行分页

版权声明:程序员胖胖胖虎阿 发表于 2022年9月4日 上午5:16。
转载请注明:如何使用PageHelper进行分页 | 胖虎的工具箱-编程导航

相关文章

暂无评论

暂无评论...