项目中经常会使用到一对多的查询场景,但是PageHelper对这种嵌套查询的支持不够,如果是一对多的列表查询,返回的分页结果是不对的
参考Github上的说明:https://github.com/pagehelper/Mybatis-PageHelper/blob/master/wikis/zh/Important.md
对于一对多的列表查询,有两种方式解决
1、在代码中处理。单独修改分页查询的resultMap,删除collection标签,然后在代码中遍历结果,查询子集
2、使用mybatis提供的方法解决,具体如下
定义两个resultMap,一个给分页查询使用,一个给其余查询使用
<resultMap id="BaseMap" type="com.xx.oo.Activity"> <id column="id" property="id" jdbcType="INTEGER"/> .... </resultMap> <resultMap id="ResultMap" type="com.xx.oo.Activity" extends="BaseMap"> <collection property="templates" ofType="com.xx.oo.Template"> <id column="pt_id" property="id" jdbcType="INTEGER"/> <result column="pt_title" property="title" jdbcType="VARCHAR"/> </collection> </resultMap> <resultMap id="RichResultMap" type="com.xx.oo.Activity" extends="BaseMap"> <!--property:对应JavaBean中的字段--> <!--ofType:对应JavaBean的类型--> <!--javaType:对应返回值的类型--> <!--column:对应数据库column的字段,不是JavaBean中的字段--> <!--select:对应查询子集的sql--> <collection property="templates" ofType="com.xx.oo.Template" javaType="java.util.List" column="id" select="queryTemplateById"> <id column="pt_id" property="id" jdbcType="INTEGER"/> <result column="pt_title" property="title" jdbcType="VARCHAR"/> </collection> </resultMap> <resultMap id="template" type="com.xx.oo.Template"> <id column="pt_id" property="id" jdbcType="INTEGER"/> <result column="pt_title" property="title" jdbcType="VARCHAR"/> </resultMap>
需要分页的查询,使用RichResultMap。先定义一个查询子集的sql
<!--这里的#{id}参数就是collection中定义的column字段--> <select id="queryTemplateById" parameterType="java.lang.Integer" resultMap="template"> select id pt_id, title pt_title from t_activity_template where is_delete=0 and activity_id = #{id} order by sort_number desc </select> <select id="queryByPage" parameterType="com.xx.oo.ActivityPageRequest" resultMap="RichResultMap"> SELECT t.*,t1.real_name creator_name FROM t_activity t left join user t1 on t1.user_id = t.creator <where> t.is_delete = 0 <if test="criteria != null and criteria.length()>0">AND (t.activity_name like concat("%",#{criteria},"%"))</if> </where> ORDER BY t.id desc </select>
不需要分页的普通查询,使用ResultMap
<select id="queryById" parameterType="java.lang.Integer" resultMap="ResultMap"> SELECT t.*, t6.id pt_id, t1.title pt_title FROM t_activity t left join t_activity_template t1 on t.id=t6.activity_id and t1.is_delete=0 WHERE t.is_delete = 0 AND t.id = #{id} </select>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。
本文向大家介绍mybatis插件pageHelper实现分页效果,包括了mybatis插件pageHelper实现分页效果的使用技巧和注意事项,需要的朋友参考一下 最近做的一个项目在持久层我们采用的是Mybatis今天完成了商品列表的分页查询的功能,这篇博客我分享一下如何采用pageHelper的插件实现分页。mybatis的应用,最大的好处就在于我们可以更加方便灵活的编写我们的sql语句,实现对
本文向大家介绍使用mybatis插件PageHelper实现分页效果,包括了使用mybatis插件PageHelper实现分页效果的使用技巧和注意事项,需要的朋友参考一下 最近都在忙着写一个网站项目,今天做一个分页功能的时候,遇到了分页效果实现不了的问题,查了好久的资料,后来终于是成功解决啦,记录一下 1.在pom.xml中添加分页插件依赖 2.在mybatis配置文件中配置分页插件 这里需要注意
本文向大家介绍SpringBoot整合mybatis结合pageHelper插件实现分页,包括了SpringBoot整合mybatis结合pageHelper插件实现分页的使用技巧和注意事项,需要的朋友参考一下 SpringBoot整合mybatis分页操作 SpringBoot整合Mybatis进行分页操作,这里需要使用Mybatis的分页插件:pageHelper, 关于pageHelper的
本文向大家介绍Spring Boot+Mybatis+Pagehelper分页实现,包括了Spring Boot+Mybatis+Pagehelper分页实现的使用技巧和注意事项,需要的朋友参考一下 Spring Boot 集成MyBatis和Pagehelper分页插件 mybatis-spring-boot-starter依赖树如下: pom配置 application.properties配
本文向大家介绍SpringBoot集成MyBatis的分页插件PageHelper实例代码,包括了SpringBoot集成MyBatis的分页插件PageHelper实例代码的使用技巧和注意事项,需要的朋友参考一下 昨天给各位总结了本人学习springboot整合mybatis第一阶段的一些学习心得和源码,主要就算是敲了一下SpringBoot的门儿,希望能给各位的入门带给一点儿捷径,今天给各位温
本文向大家介绍mybatis分页插件pageHelper详解及简单实例,包括了mybatis分页插件pageHelper详解及简单实例的使用技巧和注意事项,需要的朋友参考一下 mybatis分页插件pageHelper详解及简单实例 工作的框架spring springmvc mybatis3 首先使用分页插件必须先引入maven依赖,在pom.xml中添加如下 其次需要在配置文件中添加配置,有两