MyBatis结果集映射之一对多,多对一

一·复杂查询环境搭建

在数据库库中建学生表和老师表,建造一个老师有多个学生的一对多关系:

drop table if exists teacher;
create table teacher(
    id int primary key ,
    name varchar(20)
)engine = innodb charset = utf8;

drop table if exists student;
create table student(
    id int primary key ,
    name varchar(20),
    tid int,
    foreign key (tid) references teacher(id)
)engine = innodb charset = utf8;

insert into teacher(id, name) values (1,'何老师');
insert into student values (1,'张三',1),(2,'李四',1),(3,'王五',1),(4,'赵六',1);

二·多对一

构建实体类pojo学生和老师,这里直接使用lombok偷懒。

@Data
@AllArgsConstructor
@NoArgsConstructor
public class Student {
    private int id;
    private String name;
    private Teacher teacher;
}
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Teacher {
    private int id;
    private String name;
}

编写TeacherMapper和StudentMapper接口,并在核心配置文件中注册Mapper。

编写Mapper.xml:

这里通过学生查老师,在StudentMapper.xml中编写:

<!--  查询嵌套-->
    <select id="getStudent" resultMap="studentMap">
        select * from mybatis.student
    </select>
    <resultMap id="studentMap" type="student">
        <result property="id" column="id"></result>
        <result property="name" column="name"></result>
        <association property="teacher" column="tid" select="getTeacher"></association>
<!-- 用当前列的tid去调用getTeacher的select返回给teacher-->
    </resultMap>
    <select id="getTeacher" resultType="teacher">
        select * from mybatis.teacher where id=#{id}
    </select>

 以上为查询嵌套,将学生的tid再通过另外一个查询getTeacher查询到老师,并映射到teacher属性中。

通过column里的参数传递给嵌套查询去查询。用assocation处理,注意要表明javaType.

下面结果嵌套

采用连接查询,要映射所有字段,包括id和name

<!--  结果嵌套-->
    <select id="getStudent2" resultMap="studentMap2">
        select s.*,t.name tname from mybatis.student s,mybatis.teacher t
    </select>
    <resultMap id="studentMap2" type="student">
        <result property="id" column="id"></result>
        <result property="name" column="name"></result>
        <association property="teacher" javaType="teacher">
<!--  对于对象嵌套进去,将column分别映射成里面的属性-->
            <result property="id" column="tid"></result>
            <result property="name" column="tname"></result>
        </association>
    </resultMap>

遇到对象就嵌套进去,将column分别映射成里面的属性。建议采用结果嵌套,简单明了。

三,一对多 

修改实体类:

@Data
@AllArgsConstructor
@NoArgsConstructor
public class Student {
    private int id;
    private String name;
    private int tid;
}
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Teacher {
    private int id;
    private String name;
    private List<Student> students;
}

改为一个老师拥有一个学生集合。

编写TeacherMapper.xml

结果嵌套:

一般结果嵌套会使用连接查询,连表的字段有相同的,所以都要映射,查询语句会查出来多个结果,除集合之外的字段相同。
其余的合并到集合中!!!

注意表明ofType为集合里的泛型。

<!--    根据结果嵌套-->
    <select id="getTeacher" resultMap="teacherMap">
        select t.id,t.name,s.id sid,s.name sname,s.tid stid
        from mybatis.teacher t,mybatis.student s
        where t.id=s.tid and tid=#{id}
    </select>
    <resultMap id="teacherMap" type="teacher">
<!-- 即使数据库字段和对象属性名称相同但也要显示映射,查询语句会查出来多个结果,除集合之外的字段相同
其余的合并到集合中!!!必须都要映射!!!
-->
        <result property="id" column="id"></result>
        <result property="name" column="name"></result>
        <collection property="students" ofType="student">
            <result property="id" column="sid"></result>
            <result property="name" column="sname"></result>
            <result property="tid" column="stid"></result>
        </collection>
    </resultMap>

查询嵌套:

先查询老师,再根据老师的id去调用另一个查询去查询学生,再返回给集合,不需要标注ofType

!--     根据查询嵌套-->
    <select id="getTeacher2" resultMap="teacherMap2">
        select * from mybatis.teacher where id=#{id}
    </select>
    <resultMap id="teacherMap2" type="teacher">
        <result property="id" column="id"></result>
        <collection property="students" column="id" select="getStudentById"></collection>
    </resultMap>
    <select id="getStudentById" resultType="student">
        select * from mybatis.student where tid=#{id}
    </select>

由于结果嵌套采用连接查询所有字段都要映射,当字段较少时使用前者,字段较多时建议使用后者!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值