Mybatis的一对多

Mybatis的一对多

一、对应关系

比如:一个老师拥有多个学生!对老师而言,就是一对多的关系!

二、环境搭建

实体类

1
2
3
4
5
6
7
8
@Data
@NoArgsConstructor
public class Teacher {
private int id;
private String name;
//一个老师拥有多个学生
private List<Student> students;
}
1
2
3
4
5
6
7
8
@Data
@NoArgsConstructor
public class Student {
private int id;
private String name;
private Teacher teacher;

}

三、一对多的处理

1. 按照结果嵌套处理

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!--按照结果嵌套查询-->
<select id="getTeacher" resultType="Teacher" resultMap="getTeacherStudent">
select t.id tid,t.name tname,s.id sid,s.name sname from teacher t,students s where s.tid = t.id;
</select>
<resultMap id="getTeacherStudent" type="Teacher">
<result property="id" column="tid"/>
<result property="name" column="tname"/>
<!--复杂的属性,我们需要单独处理 对象:association 集合:collection-->
<!--avaType="" 指定的属性类型!-->
<!--集合中的泛型信息,我们使用ofType-->
<collection property="students" ofType="Student">
<result property="id" column="sid"/>
<result property="name" column="sname"/>
</collection>
</resultMap>

2. 按照查询嵌套的方式处理

1
2
3
4
5
6
7
8
9
10
11
12
<select id="getTeacher2" resultMap="getTeacherStudent2">
select id as tid,name as tname from teacher where id = #{tid};
</select>
<resultMap id="getTeacherStudent2" type="Teacher">
<result property="id" column="tid"/>
<result property="name" column="tname"/>
<collection property="students" javaType="ArrayList" ofType="Student" column="tid" select="getStudentByTeacherId"/>
</resultMap>

<select id="getStudentByTeacherId" resultType="Student">
select * from students where tid = #{tid}
</select>

四、小结

  1. 关联 - association
  2. 集合 - collection
  3. JavaType & ofType
    1. JavaType 用来指定实体类中属性的类型
    2. ofType 用来指定映射到List或者集合中的pojo类型,泛型中的约束类型!

注意点:

  • 保证SQL的可读性,尽量保证通俗易懂
  • 注意一对多和多对一中属性名和字段名问题!
  • 如果问题不好排查错误,可以使用日志log4j

面试高频

  • MySQL引擎
  • InnoDB底层原理
  • 索引
  • 索引优化
-------------本文结束感谢您的阅读-------------