共计 2328 个字符,预计需要花费 6 分钟才能阅读完成。
项目中经常会使用到一对多的查询场景,但是 PageHelper 对这种嵌套查询的支持不够,如果是一对多的列表查询,返回的分页结果是不对的参考 Github 上的说明:https://github.com/pagehelper…
对于一对多的列表查询,有两种方式解决 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>
欢迎订阅「K 叔区块链」– 专注于区块链技术学习 博客地址:http://www.jouypub.com 简书主页:https://www.jianshu.com/u/756c9c8ae984segmentfault 主页:https://segmentfault.com/blog/jouypub 腾讯云主页:https://cloud.tencent.com/developer/column/72548