PageHelper插件实现一对多查询时的分页问题
作者:JouyPub 时间:2021-11-05 07:02:34
项目中经常会使用到一对多的查询场景,但是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>
来源:https://segmentfault.com/a/1190000018825136
标签:PageHelper,查询,分页
0
投稿
猜你喜欢
WPF实现窗体中的悬浮按钮
2022-07-25 17:45:53
springboot整合kaptcha生成验证码功能
2023-07-14 21:48:51
Java Comparable和Comparator对比详解
2022-08-13 01:28:08
Android OkHttp代理与路由的彻底理解
2023-03-17 01:21:51
SpringMVC实现文件上传下载的全过程
2023-04-05 21:16:52
使用log4j MDC实现日志追踪
2022-01-13 13:20:01
java中timer的schedule和scheduleAtFixedRate方法区别详解
2023-05-25 10:47:45
IDEA2022版本创建maven web项目的两种方式详解
2022-04-24 19:34:54
Android小程序实现选项菜单
2022-04-12 00:34:01
C#实现将浮点数表示的货币数量以汉字大写形式输出的方法
2022-06-10 03:10:36
Eclipse中maven的配置详解
2023-01-04 08:51:09
MyBatis在SQL语句中如何获取list的大小
2021-08-15 12:09:55
Java编程接口回调一般用法代码解析
2023-11-11 06:55:11
Java xml出现错误 javax.xml.transform.TransformerException: java.lang.NullPointerException
2023-11-08 14:48:13
C#中函数的创建和闭包的理解
2022-08-17 01:14:35
Spring @EventListener 异步中使用condition的问题及处理
2023-07-07 21:42:16
Java编程之文件读写实例详解
2022-01-27 11:13:40
java反射使用示例分享
2023-07-02 20:18:59
java中对象调用成员变量与成员实例方法
2023-08-04 11:42:49
Android扫描和生成二维码
2022-09-11 22:57:16