参考来自:

http://www.360doc.com/content/15/0728/15/12642656_487954693.shtml

https://www.cnblogs.com/digdeep/p/4608933.html

http://www.hifreud.com/2015/03/06/mybatis-7-Pagination/

http://www.cnblogs.com/jcli/archive/2011/08/09/2132222.html

1.物理分页和逻辑分页

 逻辑分页 : 逻辑分页指的是将数据库中所有数据全部取出,然后通过Java代码控制分页逻辑。
物理分页 : 物理分页指的是在SQL查询过程中实现分页,依托与不同的数据库厂商,实现也会不同。

2.需求

现在使用的是逻辑分页,因为出现了性能问题,考虑将其变为物理分页。ps:项目中使用的ibatis的方式,具体的旧代码后面会有 。

3.实际使用

3.0 Spring中mybatis的配置

使用PageHelper也不会影响的部分,但为了说明还是列出来和mybatis相关的文件内容:

     <!-- MyBatis配置 -->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="configLocation" value="classpath:mybatis/sqlMapConfig.xml"/>
<!-- 自动扫描entity目录, 省掉Configuration.xml里的手工配置 -->
<property name="typeAliasesPackage" value="classpath:com/baosight/**/entity"/>
<!-- 显式指定Mapper文件位置 -->
<property name="mapperLocations" value="classpath:sql/**/*.xml"/>
</bean>

3.1 旧代码

来自BaseService.query()方法。主要逻辑是,当curPage=null或curRowNum=null时,不进行分页。否则进行分页处理。

重点代码如下:

         Integer curPage = (Integer) paramInfo.get("curPage");
Integer curRowNum = (Integer) paramInfo.get("curRowNum"); List<JSONObject> resultArr = new ArrayList<JSONObject>();
try {
if (curPage == null || curRowNum == null) {
resultArr = sqlSessionTemplate.selectList(querySql, daoEntity);
} else {
resultArr = sqlSessionTemplate.selectList(querySql, daoEntity,
new RowBounds((curPage - 1) * curRowNum, curRowNum));
}
} catch (Exception e) {
e.printStackTrace();
paramInfo.put("status", Constants.EXECUTE_FAIL);
paramInfo.put("returnMsg", "查询出错,请检查SQL语句!");
return paramInfo;
}

其他参数相关的代码如下:

即这里的querySql、countSql对应的是一个命名空间下的某方法。

         paramInfo.put("querySql", "GlobalMessage.querybatch");
paramInfo.put("countSql", "GlobalMessage.countbatch");
paramInfo.put("DaoEntity", "com.lyh.entity.GlobalMessage");

GlobalMessage.xml的命名空间如下:

 <mapper namespace="GlobalMessage">

queryBathch如下:显然是不带任何有关limit和offset的sql语句。

     <select id="querybatch" parameterType="com.lyh.entity.GlobalMessage"
resultType="com.alibaba.fastjson.JSONObject">
select * from t_global_message where
1 = 1
<if test="messageId != null">
and MESSAGE_ID = #{messageId}
</if>
<if test="messageKey != null and messageKey != ''" >
and MESSAGE_KEY in (${messageKey})
</if>
<if test="messageLan != null">
and MESSAGE_LAN = #{messageLan}
</if>
<if test="messageEnable != null">
and MESSAGE_ENABLE = #{messageEnable}
</if>
</select>

3.2 新代码

(1)pom.xml
        <dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>4.1.0</version>
</dependency>
(2)mybatis的配置文件SqlMapConfig.xml

<plugins>标签内的为新增部分,即注册PageHelper。

 1 <?xml version="1.0" encoding="UTF-8" ?>
2 <!DOCTYPE configuration
3 PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
4 "http://mybatis.org/dtd/mybatis-3-config.dtd">
5 <configuration>
6 <properties resource="project.properties" />
7 <settings>
8 <setting name="logPrefix" value="dao." />
9 </settings>
19 <plugins>
20 <!-- com.github.pagehelper为PageHelper类所在包名 -->
21 <plugin interceptor="com.github.pagehelper.PageHelper">
22 <property name="dialect" value="postgresql"/>
27 <!--设置为true时,如果pagesize=0或者rowbounds.limit=0就会查询出所有的结果-->
28 <property name="pageSizeZero" value="true"/>
29 <property name="reasonable" value="true"/>
30 </plugin>
31 </plugins>
37 </configuration>
(3)代码变动
         Integer curPage = (Integer) paramInfo.get("curPage");
Integer curRowNum = (Integer) paramInfo.get("curRowNum"); PageInfo<JSONObject> pageResult;
try {
if (curPage == null || curRowNum == null) {//不分页,查询出所有
curRowNum = 0;
curPage = 0;
} PageHelper.startPage(curPage, curRowNum); //PageHelper.startPage(pageIndex,pageSize);//当前页码,每页大小
List<JSONObject> list = sqlSessionTemplate.selectList(querySql, daoEntity,
new RowBounds((curPage-1)*curRowNum, curRowNum));
pageResult = new PageInfo<>(list);
pageResult.setList(list);
} catch (Exception e) {
e.printStackTrace();
paramInfo.put("status", Constants.EXECUTE_FAIL);
paramInfo.put("returnMsg", "查询出错,请检查SQL语句!");
return paramInfo;
}

4.效果比对

使用pageHelper之前,查询时的sql语句示例如下:

 DEBUG dao.GlobalMessage.queryBatch - ==>  Preparing: select * from t_global_message where 1 = 1
DEBUG dao.GlobalMessage.queryBatch - ==> Parameters:

使用pageHelper之后,输出的sql已经拼接了limit和offset:

 DEBUG dao.GlobalMessage.queryBatch - ==>  Preparing: select * from t_global_message where 1 = 1 limit ? offset ?
DEBUG dao.GlobalMessage.queryBatch - ==> Parameters: 10 0

当在程序中传递curPage或者curRowNum为null时,根据代码,curPage和curRowNum被置为了0,此时仍然使用pageHelper,sql语句没有拼接limit和offset,将所有数据都查询出来了:

 DEBUG dao.GlobalMessage.queryBatch - ==>  Preparing: select * from t_global_message where 1 = 1
DEBUG dao.GlobalMessage.queryBatch - ==> Parameters:

2017.12.14 Mybatis物理分页插件PageHelper的使用(一)的更多相关文章

  1. 2017.12.25 Mybatis物理分页插件PageHelper的使用(二)

    参考来自: 官方文档的说明:https://github.com/pagehelper/Mybatis-PageHelper/blob/master/wikis/zh/HowToUse.md 上篇博客 ...

  2. Java SSM框架之MyBatis3(三)Mybatis分页插件PageHelper

    引言 对于使用Mybatis时,最头痛的就是写分页,需要先写一个查询count的select语句,然后再写一个真正分页查询的语句,当查询条件多了之后,会发现真不想花双倍的时间写count和select ...

  3. Mybatis分页插件PageHelper的配置和使用方法

     Mybatis分页插件PageHelper的配置和使用方法 前言 在web开发过程中涉及到表格时,例如dataTable,就会产生分页的需求,通常我们将分页方式分为两种:前端分页和后端分页. 前端分 ...

  4. Mybatis框架插件PageHelper的使用

    在web开发过程中涉及到表格时,例如dataTable,就会产生分页的需求,通常我们将分页方式分为两种:前端分页和后端分页. 前端分页 一次性请求数据表格中的所有记录(ajax),然后在前端缓存并且计 ...

  5. Mybatis学习---Mybatis分页插件 - PageHelper

    1. Mybatis分页插件 - PageHelper说明 如果你也在用Mybatis,建议尝试该分页插件,这个一定是最方便使用的分页插件. 该插件目前支持Oracle,Mysql,MariaDB,S ...

  6. Mybatis分页插件PageHelper的实现

    Mybatis分页插件PageHelper的实现 前言 分页这个概念在做web网站的时候很多都会碰到 说它简单吧 其实也简单 小型的网站,完全可以自己写一个,首先查出数据库总条数,然后按照分页大小分为 ...

  7. 基于Mybatis分页插件PageHelper

    基于Mybatis分页插件PageHelper 1.分页插件使用 1.POM依赖 PageHelper的依赖如下.需要新的版本可以去maven上自行选择 <!-- PageHelper 插件分页 ...

  8. Mybatis分页插件PageHelper使用

    一. Mybatis分页插件PageHelper使用  1.不使用插件如何分页: 使用mybatis实现: 1)接口: List<Student> selectStudent(Map< ...

  9. Gitlab一键端的安装汉化及问题解决(2017/12/14目前版本为10.2.4)

    Gitlab的安装汉化及问题解决 一.前言 Gitlab需要安装的包太TM多了,源码安装能愁死个人,一直出错,后来发现几行命令就装的真是遇到的新大陆一样... ... 装完之后感觉太简单,加了汉化补丁 ...

随机推荐

  1. ffmpeg测试程序

    ffmpeg在编译安装后在源码目录运行make fate可以编译并运行测试程序.如果提示找不到ffmpeg的库用LD_LIBRARY_PATH指定一下库安装的目录.

  2. cocos2djs ctor init onEnter的区别

    cocos2d-html5 onEnter init ctor构造函数 ---js特有特性(和c++有点不一样 ctor 构造函数, new 一个对象的时候调用-----coco2d-js , 默认c ...

  3. Django CRM查询 XXX.object.filter() 常用用法总结

    __gt 大于 __gte 大于等于 User.objects.filter(age__gt=10) // 查询年龄大于10岁的用户 User.objects.filter(age__gte=10) ...

  4. Shiro源码分析之Subject和SecurityManager

    Subject 毫无疑问,Subject是Shiro最重要的一个概念. “Subject”只是一个安全术语,意味着应用程序用户的特定于安全性的“视图”.Shiro Subject实例代表单个应用程序用 ...

  5. 洛谷——P1692 部落卫队

    题目描述 原始部落byteland中的居民们为了争夺有限的资源,经常发生冲突.几乎每个居民都有他的仇敌.部落酋长为了组织一支保卫部落的队伍,希望从部落的居民中选出最多的居民入伍,并保证队伍中任何2 个 ...

  6. 【BZOJ 3175】 3175: [Tjoi2013]攻击装置(二分图匹配)

    3175: [Tjoi2013]攻击装置 Description 给定一个01矩阵,其中你可以在0的位置放置攻击装置.每一个攻击装置(x,y)都可以按照“日”字攻击其周围的 8个位置(x-1,y-2) ...

  7. Sd - 数据库开发调优

    尤其是Sql写法上的技巧,以及常见Sql的写法

  8. Thupc2017"礼"?

    题面 先粘上gouzhi的题面,听说是thupc的题 [问题背景] 情人节要到了,zhx 要给女朋友买礼物. [问题描述] 橱窗里摆放了 n 种不同的玩偶,购买第 i 种玩偶需要价格 a[i],价值为 ...

  9. poj 3464(Trie)Approximations

    Approximations Time Limit: 2000MS   Memory Limit: 131072K Total Submissions: 419   Accepted: 23 Desc ...

  10. JDK源码学习笔记——Iterable/Iterator实现原理

    Collection接口继承java.lang.Iterable接口,集合类重写了iterator()方法 public interface Iterable<T> { Iterator& ...