在Mybatis中存在很多1对N查询的场景,比如在打开一个编辑页面时,需要带出对应的新增时添加的数据,如果页面有一些多个层级一对多的情况,那么在编辑时就需要查询出所有的层级。
当然这种情况,先查询出最外面的情况,再循环查询数据库查询出里面的数据也是没问题的,但是这样性能会非常差。最好的方式就是直接在Mybatis中直接做好1对多的映射直接查询出来。
一般情况下,我们都是两层的嵌套,类似这样的:
- @Data
- public class Class {
-
- private String classId;
-
- private String className;
-
- pirvate List
studentList; - }
-
-
- @Data
- public class Student {
-
- private String studentId;
-
- private String studentName;
-
- private String classId;
- }
这种两层嵌套的查询比较好处理,网上的方案也比较多,大家可以自行百度。
但是如果是三层,乃至于多层的嵌套就不太好处理了。
找到一个方案:
是否可行,没有尝试。
下面是我自己的方案,在项目中亲测可行。
实体类的映射关系
- # 一个班级有多个学生
- @Data
- public class Class {
-
- private String classId;
-
- private String className;
-
- pirvate List
studentList; - }
-
- # 一个学生有多个爱好
- @Data
- public class Student {
-
- private String studentId;
-
- private String studentName;
-
- private String classId;
-
- pirvate List
hobbyList; - }
-
- # 爱好
- @Data
- public class Hobby {
-
- private String hobbyId;
-
- private String hobbyName;
-
- private String studentId;
- }
SQL映射关系如下:
其中第一个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>
-