mybatis一对多双层嵌套查询
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis一对多双层嵌套查询相关的知识,希望对你有一定的参考价值。
参考技术A 最近在做商城项目的时候,遇到了一个问题,就是产品分类的查询。产品分类表中有父级id,因此可以不断嵌套,查询就成了问题。翻阅资料博客,大多都是一层嵌套的联级查询,只适用于二级分类,因此三级分类,四级分类就无法查询出来了。OK,切入正题。实体类:
三级分类,对应三个实体,来看mapper
GoodCcMapper.xml
打断点运行
MyBatis 一对多查询
MyBatis一对多查询:
有联合查询和嵌套查询
联合查询是几个表联合查询,只查询一次,通过在resultMap中配置collection节点配置一对多的类即可;
嵌套查询是先查一个表,根据这个表中的结果的外键id,再去另一个表中查询数据,也是通过collection,但是另一个表的查询通过selec节点配置
1.1 联合查询
<resultMap type="Post" id="postResultMap">
<id column="id" property="id"/>
<collection column="id" property="commentList" javaType="ArrayList" ofType="Comment">
</collection>
</resultMap>
<select id="selectPostById" parameterType="int" resultMap="postResultMap">
select * from post left join comment on post.id = comment.post_id where post.id = #{id}
</select>
console:
==> Preparing: select * from post left join comment on post.id = comment.post_id where post.id = ? ==> Parameters: 1(Integer) <== Total: 3 [email protected]
1.2 嵌套查询
<resultMap type="Post" id="postResultMap">
<id column="id" property="id"/>
<collection column="id" property="commentList" javaType="ArrayList" ofType="Comment"
select="com.roxy.mybatis.mapper.CommentMapper.selectCommentByPostId">
</collection>
</resultMap>
<select id="selectPostById" parameterType="int" resultMap="postResultMap">
select * from post where id = #{id}
</select>
<select id="selectCommentByPostId" parameterType="int" resultMap="commentResultMap">
select * from comment where post_id = #{postId}
</select>
console:
==> Preparing: select * from post where id = ?
==> Parameters: 1(Integer)
<== Total: 1
==> Preparing: select * from comment where post_id = ?
==> Parameters: 1(Integer)
<== Total: 3
[email protected]
以上是关于mybatis一对多双层嵌套查询的主要内容,如果未能解决你的问题,请参考以下文章