Mybatis-07-多对一和一对多处理
Posted CodeHuba
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis-07-多对一和一对多处理相关的知识,希望对你有一定的参考价值。
多对一处理
如,
- 多个学生,对应一个老师
- 多个学生关联一个老师(多对一)
- 一个老师有很多学生(一对多)
SQL:
create table `teacher`(
`id` int(10) not null ,
`name` varchar(30) default null,
primary key(`id`)
)engine=innodb default charset =utf8;
insert into teacher(`id`,`name`)
values(1,"秦老师");
create table `student` (
`id` int(10) not null ,
`name` varchar(30) default null,
`tid` int(10) default null ,
primary key (`id`),
key `fktid` (`tid`),
constraint `fktid` foreign key (`tid`) references `teacher` (`id`)
)engine=innodb default charset =utf8;
insert into student(id,name,tid) values(1,‘小明‘,1);
insert into student(id,name,tid) values(2,‘小红‘,1);
insert into student(id,name,tid) values(3,‘小张‘,1);
insert into student(id,name,tid) values(4,‘小李‘,1);
insert into student(id,name,tid) values(5,‘小王‘,1);
测试环境搭建
- 导入lombok
- 新建实体类Teacher,Student
- 建立Mapper接口
- 建立Mapper.xml文件
- 在核心配置文件中绑定注册Mapper接口或文件
- 测试查询是否成功
按照查询嵌套处理
<!--思路:
1.查询所有的学生信息
2.根据tid,寻找对应的老师
-->
<select id="getStudent" resultMap="StudentTeacher">
select * from student
</select>
<resultMap id="StudentTeacher" type="Student">
<result property="id" column="id"/>
<association property="teacher" column="tid" javaType="Teacher" select="getTeacher"/>
</resultMap>
<select id="getTeacher" resultType="Teacher">
select * from teacher where id=#{id};
</select>
按照结果嵌套处理
<!--按照结果嵌套处理-->
<select id="getStudent2" resultMap="StudentTeacher2">
select s.id sid,s.name sname,t.name tname
from student s,teacher t
where s.tid=t.id;
</select>
<resultMap id="StudentTeacher2" type="Student">
<result property="id" column="sid"/>
<result property="name" column="sname"/>
<association property="teacher" javaType="Teacher">
<result property="name" column="tname"/>
</association>
</resultMap>
回顾对比mysql多对一查询方式:
- 子查询
- 联表查询
一对多处理
步骤:
环境搭建
实体类
@Data
public class Student {
private int id;
private String name;
private int tid;
}
@Data
public class Teacher {
private int id;
private String name;
private List<Student> students;
}
- 按照结果嵌套处理
<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="Teacher">
<result property="id" column="tid"/>
<result property="name" column="tname"/>
<collection property="students" ofType="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="Teacher">
<collection property="students" javaType="ArrayList" ofType="Student" select="getStudentByTeacherId" column="id"/>
</resultMap>
<select id="getStudentByTeacherId" resultType="Student">
select * from mybatis.student where tid=#{tid}
</select>
小结
- 关联 association多对一
- 集合 collection 一对多
- javaType 和 ofType
- JavaType 用来指定实体类中属性的类型
- ofType 用来指定映射到List中的pojo类型,泛型中的约束类型
注意点:
保证SQL的可读性,尽量通俗易懂
注意属性名和字段名区别
可以使用日志排除错误,推荐Log4j
面试高频
- Mysql引擎
- InnoDB底层原理
- 索引
- 索引优化
以上是关于Mybatis-07-多对一和一对多处理的主要内容,如果未能解决你的问题,请参考以下文章
我们如何在 Keras 中定义一对一、一对多、多对一和多对多的 LSTM 神经网络? [复制]