MyBatis分页插件PageHelper

官方使用说明

https://github.com/pagehelper/Mybatis-PageHelper/blob/master/wikis/en/HowToUse.md

下载jar包

http://mvnrepository.com/artifact/com.github.pagehelper/pagehelper/5.1.3
http://mvnrepository.com/artifact/com.github.jsqlparser/jsqlparser/1.0

导入jar包或依赖

jar包
MyBatis分页插件PageHelper
pom.xml

<dependency>
    <groupId>com.github.pagehelper</groupId>
    <artifactId>pagehelper</artifactId>
    <version>5.1.3</version>
</dependency>

配置MyBatis.config

<plugins>
        <plugin interceptor="com.github.pagehelper.PageInterceptor">
        <!-- 设置数据库类型 Oracle,Mysql,MariaDB,SQLite,Hsqldb,PostgreSQL六种数据库-->
            <property name="helperDialect" value="oracle"/>
        </plugin>
</plugins>

MyBatis分页插件PageHelper

编写Dao接口和xml配置文件

MyBatis分页插件PageHelper

MyBatis分页插件PageHelper

编写测试代码

MyBatis分页插件PageHelper

运行结果

MyBatis分页插件PageHelper

分页属性

//当前页
private int pageNum;
//每页的数量
private int pageSize;
//当前页的数量
private int size;
//排序
private String orderBy;

//由于startRow和endRow不常用,这里说个具体的用法
//可以在页面中"显示startRow到endRow 共size条数据"

//当前页面第一个元素在数据库中的行号
private int startRow;
//当前页面最后一个元素在数据库中的行号
private int endRow;
//总记录数
private long total;
//总页数
private int pages;
//结果集
private List<T> list;

//第一页
private int firstPage;
//前一页
private int prePage;
//下一页
private int nextPage;
//最后一页
private int lastPage;

//是否为第一页
private boolean isFirstPage = false;
//是否为最后一页
private boolean isLastPage = false;
//是否有前一页
private boolean hasPreviousPage = false;
//是否有下一页
private boolean hasNextPage = false;
//导航页码数
private int navigatePages;
//所有导航页号
private int[] navigatepageNums;
上一篇:PageHelper分页失效的可能原因之一


下一篇:记一次博客评论回复实现遇到的bug