Mybatis 杂记:
当数据库涉及到多对多时 mybatis 的处理办法:
- 例如在 bean 包中定义一下两个类(Stu 类和 Course 类),学生和课程之间是一对一的关系,一个学生可能对应多个课程,一个课程也可能对应多个学生。
此时你需要做的就是在两边都定义集合,list 和 set 都可以!
public class Stu {
private int id;
private String name;
private Set<Course> courses;
//Getter and Setter
//toString
//Constuctor
}
public class Course {
private long id;
private String name;
private Set<Stu> stus;
//Getter and Setter
//toString
//Constuctor
}
有了实体类以后做一些 demo:
1.保存一个学生信息:
在 mapper 接口中定义:void saveStu(Stu stu);
Mapper.xml 文件中:
由于在数据库(oracle)定义一个序列在维护主键,故这样写:
<insert id="saveStu" parameterType="stu">
<selectKey keyProperty="id" resultType="int" order="BEFORE">
select sc_seq.nextval from dual
</selectKey>
insert into s_stu values(#{id},#{name})
</insert>
2.根据课程去查询所有选课的学生:
在 mapper 接口中定义:Course findCourseAndStu(long id);
Mapper.xml 文件中:
<select id="findCourseAndStu" parameterType="long" resultMap="course2_model">
select id,name
from S_COURSE
where ID = #{id}
</select>
由于 Course 类中的 private Set<Stu> stus;
不能从数据中直接查询到,所以这里用到 resultMap
来自定义模板。
<resultMap id="course2_model" type="course">
<id property="id" column="id"/>
<result property="name" column="name"/>
<collection property="stus" column="id" select="findStuByIds"></collection>
</resultMap>
用到 collection
来维护多对多的这层关系,property
属性值得是你在 Course 类中定义的那个集合的名字,column
和 select
表示从哪里去查询,这里再写一个 select 如下:
<select id="findStuByIds" parameterType="int" resultType="stu">
select s.id,s.NAME
from S_STU s,STU_COU sc
where s.ID = sc.STU_ID and sc.COU_ID = #{id}
</select>
这就表示根据 id 号去查询对应的 stu 的各个属性,通过 collection
最后装配成一个 stu 对象。
3.同样你也可以通过学生去查询所有的选课,与 2 中的代码类似,多对多比起一对多的关系就是由单向转为双向!
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于