分页插件PageHelper

Posted kinglead

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了分页插件PageHelper相关的知识,希望对你有一定的参考价值。

分页插件PageHelper

PageHelper概述

PageHelper 是一款开源免费的Mybatis 物理分页插件。PageHelper 插件可以方便地实现物理 分页, 与RowBounds 分页方式相比, PageHelper 在查询性能方面,更胜一筹。PageHelper 的 github 地址: https://github .com/pagehelper/Mybatis-PageHelper ,可访问该地址下载相关的文档 和资料。

PageHelper使用

PageHelper 使用非常简单, 首先, 在项目的pom.xml 文件添加PageHelper 依赖包,具体代 码如下所示:

技术图片

依赖添加完成之后,在applicationContext.xml 配置文件中添加PageHelper 相关配置, 具体 代码如下:

技术图片

技术图片

PageHelper 使用非常简单, 在需要进行分页的Mybatis 方法前调用PageHelp er.startPage 静 态方法即可, 紧跟在这个方法后的第一个Mybatis 查询方法会被进行分页,然后分页插件会把 分页信息封装到Pagelnfo 中。Pagelnfo 包含了非常全面的分页属性, Pagelnfo 具体源码如下 所示:

技术图片

技术图片

技术图片

 

以上是关于分页插件PageHelper的主要内容,如果未能解决你的问题,请参考以下文章

PageHelper和MybatisPlus的分页插件冲突

基于Mybatis分页插件PageHelper

分页插件PageHelper

MyBatisMyBatis分页插件Pagehelper

SpringBoot+Mybatis配置Pagehelper分页插件实现自动分页

SpringBoot整合Pagehelper分页插件