Python 官方文档:入门教程 => 点击学习
目录mybatis collection三层嵌套查询一般情况下,我们都是两层的嵌套找到一个方案实体类的映射关系sql映射关系如下解析如下总结Mybatis collection三层嵌
在Mybatis中存在很多1对N查询的场景,比如在打开一个编辑页面时,需要带出对应的新增时添加的数据,如果页面有一些多个层级一对多的情况,那么在编辑时就需要查询出所有的层级。
当然这种情况,先查询出最外面的情况,再循环查询数据库查询出里面的数据也是没问题的,但是这样性能会非常差。
最好的方式就是直接在Mybatis中直接做好1对多的映射直接查询出来。
类似这样的:
@Data
public class Class {
private String classId;
private String className;
pirvate List<Student> studentList;
}
@Data
public class Student {
private String studentId;
private String studentName;
private String classId;
}
这种两层嵌套的查询比较好处理,网上的方案也比较多,大家可以自行百度。
但是如果是三层,乃至于多层的嵌套就不太好处理了。
mybatis多层级collection嵌套
是否可行,没有尝试。
下面是我自己的方案,在项目中亲测可行。
# 一个班级有多个学生
@Data
public class Class {
private String classId;
private String className;
pirvate List<Student> studentList;
}
# 一个学生有多个爱好
@Data
public class Student {
private String studentId;
private String studentName;
private String classId;
pirvate List<Hobby> hobbyList;
}
# 爱好
@Data
public class Hobby {
private String hobbyId;
private String hobbyName;
private String studentId;
}
其中第一个resultMap是一种分开SQL查询的处理方式,第二个resultMap是一种单个SQL解决嵌套问题的写法。这里我把它们融合为一个了。
如果是只有两层嵌套的话,基本上一个SQL的写法就可以搞定,或者说简洁明了的方式就使用两个SQL的写法。
classMap:
查询class的信息,以及对应的学生列表,采用2个SQL的写法处理,其中select是查询这个studentList的SQL的id,即queryStudentInfo。
传递的column是两张表关联的字段,也就是说将第一层的班级id传递到下一个SQL中作为参数。
studentMap:
查询学生的信息,以及爱好列表,采用单个SQL的查询方式,直接把爱好的字段直接放在了collection中。
<resultMap id="claSSMap" type="com.xxx.Class">
<id column="class_id" property="classId"/>
<result column="class_name" property="className"/>
<collection property="studentList" javaType="java.util.List"
ofType="com.xxx.StudentPO"
select="queryStudentInfo" column="class_id">
</collection>
</resultMap>
<resultMap id="studentMap" type="com.xxx.Student">
<id column="student_id" property="studentId"/>
<result column="student_name" property="studentName"/>
<collection property="hobbyList" javaType="java.util.List"
ofType="com.xxx.Hobby">
<id column="hobby_id" property="hobbyId"/>
<result column="hobby_name" property="hobbyName"/>
</collection>
</resultMap>
SQL如下:
<select id="queryClassInfo" resultMap="classMap">
SELECT
class_id,
class_name
FROM
class
where
class_id = #{classId}
</select>
<select id="queryStudentInfo" resultMap="studentMap">
SELECT
sutdent_id,
sutdent_name,
hobby_id,
hobby_name
FROM
student t1
LEFT JOIN
hobby t2
ON
t1.sutdent_id = t2.sutdent_id
where
class_id = #{classId}
</select>
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
--结束END--
本文标题: Mybatis的collection三层嵌套查询方式(验证通过)
本文链接: https://lsjlt.com/news/199901.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0