mybatis框架实现一对多多对一查询

1.多对一:

多个学生,对应一个老师
对于学生这边而言,关联...多个学生,关联一个老师【多对一】
对于老师而言,集合,一个老师又很多学生【一对多】

实体类:
//使用了lombok
@Data
public class Teacher {
    private int id;
    private String name;
}

@Data
public class Student {
    private int id;
    private String name;

    //学生需要关联一个老师!
    private Teacher teacher;

}

按照查询嵌套处理:(子查询)

<!--
思路:
    1、查询所有的学生信息
    2、根据查询出来的学生的id的tid,寻找对应的老师! -子查询
-->
<!--此处的resultMap要写下文reaultMap标签中的id-->
<select id="getStudent" resultMap="StudentTeacher">
select * from student
</select>
​
<resultMap id="StudentTeacher" type="com.rui.pojo.Student">
    <!--复杂的属性,我们需要单独处理  对象:association  集合:collection-->
    <!--column表示你数据库表中的外键,也就是学生表的tid(对应老师的id)-->
    <!--select表示将teacher类转入的方法,使用下文的select标签-->
    <association property="teacher" column="tid" javaType="com.rui.pojo.Teacher" select="getTeacher"/>
</resultMap>
​
<select id="getTeacher" resultType="com.rui.pojo.Teacher">
    select * from teacher where id = #{id}
</select>

按照结果嵌套处理:(连表查询)

<!--按照结果嵌套处理-->
<select id="getStudent2" resultMap="StudentTeacher2">
    select s.id sid,s.name sname,t.name tname,t.id tid
    from student s,teacher t
    where s.tid=t.id;
</select>
​
<resultMap id="StudentTeacher2" type="com.rui.pojo.Student">
    <result property="id" column="sid"/>
    <result property="name" column="sname"/>
    <association property="teacher" javaType="com.rui.pojo.Teacher">
        <result property="id" column="tid"></result>
        <result property="name" column="tname"></result>
    </association>
​
</resultMap>

2.一对多

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

@Data
public class Teacher {
    private int id;
    private String name;
​
    //一个老师拥有多个学生
    private List<Student> students;
}
@Data
public class Student {
    private int id;
    private String name;
    private int tid;
​
}

按照结果嵌套处理:

<!--按结果嵌套查询-->
<select id="getTeacher" resultMap="TeacherStudent">
    select s.id sid,s.name sname,t.name tname,t.id tid
    from student s,teacher t
    where s.tid=t.id and t.id = #{tid}
</select>
<resultMap id="TeacherStudent" type="com.rui.pojo.Teacher">
    <result property="id" column="tid"/>
    <result property="name" column="tname"/>
    <!--复杂的属性,我们需要单独处理  对象:association  集合:collection
        javaType="" 指定属性的类型
        集合中的泛型信息,我们使用ofType获取
    -->
    <collection property="students" ofType="com.rui.pojo.Student">
        <result property="id" column="sid"/>
        <result property="name" column="sname"/>
        <result property="tid" column="tid"/>
    </collection>
</resultMap>

按照查询嵌套处理

<select id="getTeacher2" resultMap="TeacherStudent2">
    select * from mybatis.teacher where id = #{tid}
</select>
<resultMap id="TeacherStudent2" type="com.rui.pojo.Teacher">
    <collection property="students" javaType="ArrayList" ofType="com.rui.pojo.Student" select="getStudentByTeacherId" column="id"/>
</resultMap>
​
<select id="getStudentByTeacherId" resultType="com.rui.pojo.Student">
    select * from mybatis.student where tid = #{tid}
</select>

小结

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

注意点:

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


以上内容为学习b站狂神老师mybatis笔记,有错误欢迎指出,大佬勿喷.

posted @ 2020-04-13 15:58  文戌  阅读(763)  评论(0编辑  收藏  举报