Mybatis 一对多处理详解
一对多的理解
- 一个老师拥有多个学生
- 如果对于老师这边,就是一个一对多的现象,即从一个老师下面拥有一群学生(集合)!
完成一个一对多的Demo
实体类的编写
注意:集合中的泛型,用ofType去获取
按照结果嵌套处理
<select id="getTeacher1" resultMap="TeacherStudent">
select t.id tid,t.name tname,s.id sid,s.name sname
from mybatis.student s,mybatis.teacher t
where s.tid=t.id and t.id=#{tid};
</select>
<resultMap id="TeacherStudent" type="Teacher">
<result property="id" column="tid"></result>
<result property="name" column="tname"></result>
<collection property="students" ofType="Student">
<result property="id" column="sid"></result>
<result property="name" column="sname"></result>
<result property="tid" column="tid"></result>
</collection>
</resultMap>
按照查询嵌套处理
<select id="getTeacher2" resultMap="TeacherStudent2">
select * from mybatis.teacher where id=#{tid}
</select>
<resultMap id="TeacherStudent2" type="Teacher">
<collection property="students" javaType="List" ofType="Student" select="getStudentByTeacherId" column="id"></collection>
</resultMap>
<select id="getStudentByTeacherId" resultType="Student">
select * from mybatis.student where tid=#{tid}
</select>
小结
1.关联 -association 【多对一】多个学生关联一个老师
2.集合- collection【一对多】一个集合老师包含多个学生
3.javaType & ofType
1.JavaType 用来指定实体类中属性的类型
2.ofType 用来指定映射到List或者集合中pojo类型,简单来说就是泛型中的类型 如List < Student > 查询的结果是一个List List中的类型是student javaType对应List ofType对应Student
注意点
- 保证SQL的可读性,尽量保证通俗易懂
- 注意一对多和多对一中,属性名和字段的问题
- 如果问题不好排错,使用日志,建议Log4j
如果对您有帮助,免费的赞点一个~~~感谢🙏
|