mybatis-PageHelper分页插件的原理和使用

该插件目前支持Oracle,Mysql,MariaDB,SQLite,Hsqldb,PostgreSQL六种数据库分页。
PageHelper分页插件的原理
其实就是使用limit进行分页

mybatis-PageHelper分页插件的原理和使用_第1张图片
使用方法,这儿提供一个参考文档下载
简单列举下步骤
1.加入jar包

<dependency>
    <groupId>com.github.pagehelpergroupId>
    <artifactId>pagehelperartifactId>
    <version>3.4.2version>
dependency>
<dependency>
    <groupId>com.github.jsqlparsergroupId>
    <artifactId>jsqlparserartifactId>
    <version>0.9.1version>
dependency>

2.在Mybatis配置xml中配置拦截器插件 SqlMapConfig.xml

<configuration>
 
    <plugins>
    
    <plugin interceptor="com.github.pagehelper.PageHelper">
                
        <property name="dialect" value="mysql"/>
    plugin>
plugins>

configuration>

3,在代码中使用

1、设置分页信息:
//获取第1页,10条内容,默认查询总数count,这儿只要在查询的sql语句之前使用。
PageHelper.startPage(1, 10);
//紧跟着的第一个select方法会被分页
List list = countryMapper.selectIf(1);
2、取分页信息
//分页后,实际返回的结果list类型是Page,如果想取出分页信息,需要强制转换为Page
Page listCountry = (Page)list;
listCountry.getTotal();

我的serviceimpl分页代码

public EasyUIResult getItemList(int page, int rows) {
        //查询商品列表
        TbItemExample example = new TbItemExample();
        //分页处理
        PageHelper.startPage(page, rows);
        List<TbItem> list = itemMapper.selectByExample(example);
        //创建一个返回值对象
        EasyUIResult result = new EasyUIResult();
        result.setRows(list);
        //取出记录总条数
        PageInfo<TbItem> pageInfo= new PageInfo<>(list);
        result.setTotal(pageInfo.getTotal());
        return result;
    }

你可能感兴趣的:(mybatis)