PageHelper学习笔记(MyBatis分页插件)


通过PageHelper插件,开发者可以不用单独维护分页(和排序),还可以大大减少count查询语句的工作量。

PageHelper中的PageInterceptor拦截器,实现了对SQL加壳进行分页,同时也在这里查询了sql的count总条数。

可以模仿PageInterceptor,实现org.apache.ibatis.plugin.Interceptor,自定义处理过程。

使用方式

1、引入jar包

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

2、配置mybatis-config.xml

<plugins>
    <plugin interceptor="com.github.pagehelper.PageInterceptor">
        <!-- config params as the following -->
        <property name="helperDialect" value="mysql"/>
    </plugin>
</plugins>

3、使用

PageHelper.startPage(pageNum, pageSize, orderBy);
list = mapper查询;
total = new PageInfo(list).getTotal();

另一种方式:MyBatis Generator

使用IDEA的插件(better-mybatis-generator),生成常用SQL模板,同样方便。

ProductExample productExample = new ProductExample();
productExample.setOffset(offset);
productExample.setLimit(limit);
return productDao.selectByExample(productExample);
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值