2017.12.14 Mybatis物理分页插件PageHelper的使用(一)

时间:2024-01-10 23:13:20

参考来自:

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: