一、簡介:
- <resultMap>標(biāo)簽寫在 mapper.xml中,由程序員控制 SQL查詢結(jié)果與
實(shí)體類的映射關(guān)系.
- 默認(rèn) MyBatis 使用 Auto Mapping 特性.
- 使用<resultMap>標(biāo)簽時,<select>標(biāo)簽不寫 resultType 屬性,而是使
用 resultMap 屬性引用<resultMap>標(biāo)簽.
- 使用 resultMap 實(shí)現(xiàn)單表映射關(guān)系
1. 實(shí)體類命名與數(shù)據(jù)庫命名不同
private int id1;
private String name1;
private int age1;
public int getId() {
return id1;
}
--------------------------------------------------------------------
<resultMap type="People" id="myMap">
<id column="id" property="id1"/>
<result column="name" property="name1"/>
<result column="age" property="age1"/>
</resultMap>
<select id="selAll" resultMap="myMap">
select * from people
</select>
二伟阔、使用 resultMap 實(shí)現(xiàn)關(guān)聯(lián)單個對象(N+1 方式)
介紹:N+1 查詢方式,先查詢出某個表的全部信息,根據(jù)這個表的信息查詢另一個表的信息.
- 與業(yè)務(wù)裝配的區(qū)別:
業(yè)務(wù)裝配:完全可以在 service 里面寫的代碼,由 mybatis 完成裝配,即先查詢
- 實(shí)現(xiàn)步驟:
- 在 Student 實(shí)現(xiàn)類中包含了一個 Teacher 對象
public class Student {
private int id;
private String name;
private int age;
private int tid;
private Teacher teacher;
- 在 TeacherMapper 中提供一個查詢
<select id="selById" resultType="teacher" parameterType="int">
select * from teacher where id=#{0}
</select
- 在 StudentMapper 中4.3.3.1 <association> 裝配一個對象時使用
property: 對象在類中的屬性名
select:通過哪個查詢查詢出這個對象的信息
column: 把當(dāng)前表的哪個列的值做為參數(shù)傳遞給另
一個查詢
<resultMap type="student" id="stuMap">
<id property="id" column="id"/>
<result property="name" column="name"/>
<result property="age" column="age"/>
<result property="tid" column="tid"/>
<!-- 如果關(guān)聯(lián)一個對象 -->
<association property="teacher" select="com.bjsxt.mapper.TeacherMapper.selById"column="tid"></association>
</resultMap>
<select id="selAll" resultMap="stuMap">
select * from student
</select>
三耍属、使用 resultMap 實(shí)現(xiàn)關(guān)聯(lián)單個對象(聯(lián)合查詢方式)
- 只需要編寫一個 SQL,在 StudentMapper 中添加下面效果
- <association/>只要專配一個對象就用這個標(biāo)簽
- 此時把<association/>小的<resultMap>看待
- javaType 屬性:<association/>專配完后返回一個什么類型的對象.取值是一個類(或類的別名)
<resultMap type="Student" id="stuMap1">
<id column="sid" property="id"/>
<result column="sname" property="name"/>
<result column="age" property="age"/>
<result column="tid" property="tid"/>
<association property="teacher" javaType="Teacher" >
<id column="tid" property="id"/>
<result column="tname" property="name"/>
</association>
</resultMap>
<select id="selAll1" resultMap="stuMap1">
select s.id sid,s.name sname,age age,t.id tid,t.name tname FROM student s left outer join teachert on s.tid=t.id
</select>
四寸宵、使用 resultMap 實(shí)現(xiàn)關(guān)聯(lián)集合對象(N+1 方式)
- 在 Teacher 中添加 List<Student>
- 在 StudentMapper.xml 中添加通過 tid 查詢
- 在 TeacherMapper.xml 中添加查詢?nèi)?br>
<collection/> 當(dāng)屬性是集合類型時使用的標(biāo)簽
<resultMap type="teacher" id="mymap">
<id column="id" property="id"/>
<result column="name" property="name"/>
<collection property="list"
select="com.bjsxt.mapper.StudentMapper.selByTid"
column="id"></collection>
</resultMap>
<select id="selAll" resultMap="mymap">
select * from teacher
</select>
五檩帐、使用<resultMap>實(shí)現(xiàn)關(guān)聯(lián)集合對象(聯(lián)合查詢方式)
- 在 teacherMapper.xml 中添加
- mybatis 可以通過主鍵判斷對象是否被加載過.不需要擔(dān)心創(chuàng)建重復(fù) Teacher
- 注意:這里的sql語句為什么要起別名术幔,是因?yàn)椴黄饎e名的花上面的配置文件中就都使用column=“id”。
-
<resultMap type="teacher" id="mymap1">
<id column="tid" property="id"/>
<result column="tname" property="name"/>
<collection property="list" ofType="student" >
<id column="sid" property="id"/>
<result column="sname" property="name"/>
<result column="age" property="age"/>
<result column="tid" property="tid"/>
</collection>
</resultMap>
<select id="selAll1" resultMap="mymap1">
select t.id tid,t.name tname,s.id sid,s.name sname,age,tid from teacher t LEFT JOIN student s on t.id=s.tid;
</select>
六湃密、使用 Auto Mapping 結(jié)合別名實(shí)現(xiàn)多表查詢.
- 只能使用多表聯(lián)合查詢方式诅挑,且智能查詢單個對象
- 要求:查詢出的列別和屬性名相同.
實(shí)現(xiàn)方式
- 在 SQL 是關(guān)鍵字符,兩側(cè)添加反單引號
<select id="selAll" resultType="student">
select t.id `teacher.id`,t.name `teacher.name`,s.id id,s.name name,age,tid from student s LEFT JOIN teacher t on t.id=s.tid
</select>