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依赖
2)在mybatis主配置文件中加入插件
3)在代码中引入分页方法
4)测试结果
相关文章
暂无评论...