您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)mybatis屬性的示例分析的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
前言
MyBatis是基于“數(shù)據(jù)庫結(jié)構(gòu)不可控”的思想建立的,也就是我們希望數(shù)據(jù)庫遵循第三范式或BCNF,但實(shí)際事與愿違,那么結(jié)果集映射就是MyBatis為我們提供這種理想與現(xiàn)實(shí)間轉(zhuǎn)換的手段了,而resultMap就是結(jié)果集映射的配置標(biāo)簽了。
在深入ResultMap標(biāo)簽前,我們需要了解從SQL查詢結(jié)果集到JavaBean或POJO實(shí)體的過程。
從SQL查詢結(jié)果到領(lǐng)域模型實(shí)體
通過JDBC查詢得到ResultSet對象
遍歷ResultSet對象并將每行數(shù)據(jù)暫存到HashMap實(shí)例中,以結(jié)果集的字段名或字段別名為鍵,以字段值為值
根據(jù)ResultMap標(biāo)簽的type屬性通過反射實(shí)例化領(lǐng)域模型
根據(jù)ResultMap標(biāo)簽的type屬性和id、result等標(biāo)簽信息將HashMap中的鍵值對,填充到領(lǐng)域模型實(shí)例中并返回
1、屬性說明
id屬性 ,resultMap標(biāo)簽的標(biāo)識。
type屬性 ,返回值的全限定類名,或類型別名。
autoMapping屬性 ,值范圍true(默認(rèn)值)|false, 設(shè)置是否啟動自動映射功能,自動映射功能就是自動查找與字段名小寫同名的屬性名,并調(diào)用setter方法。而設(shè)置為false后,則需要在resultMap
內(nèi)明確注明映射關(guān)系才會調(diào)用對應(yīng)的setter方法。
2、基本作用:建立SQL查詢結(jié)果字段與實(shí)體屬性的映射關(guān)系
示例1:通過setter構(gòu)造領(lǐng)域模型
public class EStudent{ private long id; private String name; private int age; // getter,setter方法 /** * 必須提供一個無參數(shù)的構(gòu)造函數(shù) */ public EStudent(){} }
<select id="getStudent" resultMap="getStudentRM"> SELECT ID, Name, Age FROM TStudent </select> <resultMap id="getStudentRM" type="EStudnet"> <id property="id" column="ID"/> <result property="studentName" column="Name"/> <result property="studentAge" column="Age"/> </resultMap>
子元素說明:
id元素 ,用于設(shè)置主鍵字段與領(lǐng)域模型屬性的映射關(guān)系
result元素 ,用于設(shè)置普通字段與領(lǐng)域模型屬性的映射關(guān)系
id、result語句屬性配置細(xì)節(jié):
屬性 | 描述 |
---|---|
property | 需要映射到JavaBean 的屬性名稱。 |
column | 數(shù)據(jù)表的列名或者標(biāo)簽別名。 |
javaType | 一個完整的類名,或者是一個類型別名。如果你匹配的是一個JavaBean,那MyBatis 通常會自行檢測到。然后,如果你是要映射到一個HashMap,那你需要指定javaType 要達(dá)到的目的。 |
jdbcType | 數(shù)據(jù)表支持的類型列表。這個屬性只在insert,update 或delete 的時(shí)候針對允許空的列有用。JDBC 需要這項(xiàng),但MyBatis 不需要。如果你是直接針對JDBC 編碼,且有允許空的列,而你要指定這項(xiàng)。 |
typeHandler | 使用這個屬性可以覆寫類型處理器。這項(xiàng)值可以是一個完整的類名,也可以是一個類型別名。 |
示例2:通過構(gòu)造函數(shù)構(gòu)造領(lǐng)域模型
<select id="getStudent" resultMap="getStudentRM"> SELECT ID, Name, Age FROM TStudent</select><resultMap id="getStudentRM" type="EStudnet"> <constructor> <idArg column="ID" javaType="_long"/> <arg column="Name" javaType="String"/> <arg column="Age" javaType="_int"/> </constructor></resultMap>
子元素說明:
constructor元素 ,指定使用指定參數(shù)列表的構(gòu)造函數(shù)來實(shí)例化領(lǐng)域模型。注意:其子元素順序必須與參數(shù)列表順序?qū)?yīng)
idArg子元素 ,標(biāo)記該入?yún)橹麈I
arg子元素 ,標(biāo)記該入?yún)槠胀ㄗ侄?主鍵使用該子元素設(shè)置也是可以的)
3、一對一關(guān)系、一對多關(guān)系查詢
注意:在采用嵌套結(jié)果的方式查詢一對一、一對多關(guān)系時(shí),必須要通過resultMap下的id或result標(biāo)簽來顯式設(shè)置屬性/字段映射關(guān)系,否則在查詢多條記錄時(shí)會僅僅返回最后一條記錄的情況。
聯(lián)合元素用來處理“一對一”的關(guān)系。需要指定映射的Java實(shí)體類的屬性,屬性的javaType(通常MyBatis 自己會識別)。對應(yīng)的數(shù)據(jù)庫表的列名稱。如果想覆寫的話返回結(jié)果的值,需要指定typeHandler。
不同情況需要告訴MyBatis 如何加載一個聯(lián)合。MyBatis 可以用兩種方式加載:
select: 執(zhí)行一個其它映射的SQL 語句返回一個Java實(shí)體類型。較靈活;
resultsMap: 使用一個嵌套的結(jié)果映射來處理通過join查詢結(jié)果集,映射成Java實(shí)體類型。
例如,一個班級對應(yīng)一個班主任。
首先定義好班級中的班主任 private TeacherEntity teacherEntity;
使用select實(shí)現(xiàn)聯(lián)合
例:班級實(shí)體類中有班主任的屬性,通過聯(lián)合在得到一個班級實(shí)體時(shí),同時(shí)映射出班主任實(shí)體。
這樣可以直接復(fù)用在TeacherMapper.xml文件中定義好的查詢teacher根據(jù)其ID的select語句。而且不需要修改寫好的SQL語句,只需要直接修改resultMap即可。
ClassMapper.xml文件部分內(nèi)容:
<resultMap type="ClassEntity" id="classResultMap"> <id property="classID" column="CLASS_ID" /> <result property="className" column="CLASS_NAME" /> <result property="classYear" column="CLASS_YEAR" /> <association property="teacherEntity" column="TEACHER_ID" select="getTeacher"/> </resultMap> <select id="getClassByID" parameterType="String" resultMap="classResultMap"> SELECT * FROM CLASS_TBL CT WHERE CT.CLASS_ID = #{classID}; </select>
TeacherMapper.xml文件部分內(nèi)容:
<resultMap type="TeacherEntity" id="teacherResultMap"> <id property="teacherID" column="TEACHER_ID" /> <result property="teacherName" column="TEACHER_NAME" /> <result property="teacherSex" column="TEACHER_SEX" /> <result property="teacherBirthday" column="TEACHER_BIRTHDAY"/> <result property="workDate" column="WORK_DATE"/> <result property="professional" column="PROFESSIONAL"/> </resultMap> <select id="getTeacher" parameterType="String" resultMap="teacherResultMap"> SELECT * FROM TEACHER_TBL TT WHERE TT.TEACHER_ID = #{teacherID} </select>
使用resultMap實(shí)現(xiàn)聯(lián)合
與上面同樣的功能,查詢班級,同時(shí)查詢器班主任。需在association中添加resultMap(在teacher的xml文件中定義好的),新寫sql(查詢班級表left join教師表),不需要teacher的select。
修改ClassMapper.xml文件部分內(nèi)容:
<resultMap type="ClassEntity" id="classResultMap"> <id property="classID" column="CLASS_ID" /> <result property="className" column="CLASS_NAME" /> <result property="classYear" column="CLASS_YEAR" /> <association property="teacherEntity" column="TEACHER_ID" resultMap="teacherResultMap"/> </resultMap> <select id="getClassAndTeacher" parameterType="String" resultMap="classResultMap"> SELECT * FROM CLASS_TBL CT LEFT JOIN TEACHER_TBL TT ON CT.TEACHER_ID = TT.TEACHER_ID WHERE CT.CLASS_ID = #{classID}; </select>
其中的teacherResultMap請見上面TeacherMapper.xml文件部分內(nèi)容中。
聚集元素用來處理“一對多”的關(guān)系。需要指定映射的Java實(shí)體類的屬性,屬性的javaType(一般為ArrayList);列表中對象的類型ofType(Java實(shí)體類);對應(yīng)的數(shù)據(jù)庫表的列名稱;
不同情況需要告訴MyBatis 如何加載一個聚集。MyBatis 可以用兩種方式加載:
1. select: 執(zhí)行一個其它映射的SQL 語句返回一個Java實(shí)體類型。較靈活;
2. resultsMap: 使用一個嵌套的結(jié)果映射來處理通過join查詢結(jié)果集,映射成Java實(shí)體類型。
例如,一個班級有多個學(xué)生。
首先定義班級中的學(xué)生列表屬性:private List<StudentEntity> studentList;
使用select實(shí)現(xiàn)聚集
用法和聯(lián)合很類似,區(qū)別在于,這是一對多,所以一般映射過來的都是列表。所以這里需要定義javaType為ArrayList,還需要定義列表中對象的類型ofType,以及必須設(shè)置的select的語句名稱(需要注意的是,這里的查詢student的select語句條件必須是外鍵classID)。
ClassMapper.xml文件部分內(nèi)容:
<resultMap type="ClassEntity" id="classResultMap"> <id property="classID" column="CLASS_ID" /> <result property="className" column="CLASS_NAME" /> <result property="classYear" column="CLASS_YEAR" /> <association property="teacherEntity" column="TEACHER_ID" select="getTeacher"/> <collection property="studentList" column="CLASS_ID" javaType="ArrayList" ofType="StudentEntity" select="getStudentByClassID"/> </resultMap> <select id="getClassByID" parameterType="String" resultMap="classResultMap"> SELECT * FROM CLASS_TBL CT WHERE CT.CLASS_ID = #{classID}; </select>
StudentMapper.xml文件部分內(nèi)容:
<!-- java屬性,數(shù)據(jù)庫表字段之間的映射定義 --> <resultMap type="StudentEntity" id="studentResultMap"> <id property="studentID" column="STUDENT_ID" /> <result property="studentName" column="STUDENT_NAME" /> <result property="studentSex" column="STUDENT_SEX" /> <result property="studentBirthday" column="STUDENT_BIRTHDAY" /> </resultMap> <!-- 查詢學(xué)生list,根據(jù)班級id --> <select id="getStudentByClassID" parameterType="String" resultMap="studentResultMap"> <include refid="selectStudentAll" /> WHERE ST.CLASS_ID = #{classID} </select>
使用resultMap實(shí)現(xiàn)聚集
使用resultMap,就需要重寫一個sql,left join學(xué)生表。
<resultMap type="ClassEntity" id="classResultMap"> <id property="classID" column="CLASS_ID" /> <result property="className" column="CLASS_NAME" /> <result property="classYear" column="CLASS_YEAR" /> <association property="teacherEntity" column="TEACHER_ID" resultMap="teacherResultMap"/> <collection property="studentList" column="CLASS_ID" javaType="ArrayList" ofType="StudentEntity" resultMap="studentResultMap"/> </resultMap> <select id="getClassAndTeacherStudent" parameterType="String" resultMap="classResultMap"> SELECT * FROM CLASS_TBL CT LEFT JOIN STUDENT_TBL ST ON CT.CLASS_ID = ST.CLASS_ID LEFT JOIN TEACHER_TBL TT ON CT.TEACHER_ID = TT.TEACHER_ID WHERE CT.CLASS_ID = #{classID}; </select>
其中的teacherResultMap請見上面TeacherMapper.xml文件部分內(nèi)容中。studentResultMap請見上面StudentMapper.xml文件部分內(nèi)容中。
4. 動態(tài)映射關(guān)系
通過 discriminator子元素 (鑒別器)可以實(shí)現(xiàn)動態(tài)映射關(guān)系信息的設(shè)置。具體示例如下:
public class EStudent{ private long id; private String name; private String juniorHighSchool; private String seniorHighSchool; private int during; // 在本校就讀時(shí)間 // getter,setter方法 /** * 必須提供一個無參數(shù)的構(gòu)造函數(shù) */ public EStudent(){} }
情景:查詢學(xué)生信息的seniorHighSchool信息,若就讀時(shí)間during字段值為4、5、6時(shí),則以juniorHighSchool字段作所為seniorHighSchool信息。
<select id="getStundent" resultMap="rm"> SELECT ID, Name, JuniorHighSchool, SeniorHighSchool, during FROM TStudent</select><resultMap id="rm" type="EStudent"> // 若不加這句,則當(dāng)將juniorHighSchool賦予給seniorHighSchool屬性時(shí),juniorHighSchool屬性將為null <result column="juniorHighSchool" property="juniorHighSchool"/> <discriminator column="during" javaType="_int"> // 形式1:通過resultType設(shè)置動態(tài)映射信息 <case value="4" resultType="EStudent"> <result column="juniorHighSchool" property="seniorHighSchool"/> </case> // 形式2: 通過resultMap設(shè)置動態(tài)映射信息 <case value="5" resultMap="dynamicRM"/> <case value="6" resultMap="dynamicRM"/> </discriminator></resultMap><resultMap id="dynamicRM" type="EStudent"> <result column="juniorHighSchool" property="seniorHighSchool"/></resultMap>
注意:上面關(guān)于 discriminator子元素 的 case元素 的 resultType屬性 和 resultMap元素 的 type屬性 ,均不是直指返回的領(lǐng)域模型類型,而是指定根據(jù)判斷條件后得到映射關(guān)系,可通過 id子元素 和 result子元素 重寫映射關(guān)系。
5. id元素,result元素,idArg元素,arg元素,discriminator元素的共同屬性
javaType屬性 :Java類的全限定名,或別名
jdbcType屬性 :JDBC類型, JDBC類型為CUD操作時(shí)列可能為空時(shí)進(jìn)行處理
typeHandler屬性 :指定類型處理器的全限定類名或類型別名
column屬性 :指定SQL查詢結(jié)果的字段名或字段別名。將用于JDBC的 resultSet.getString(columnName)
感謝各位的閱讀!關(guān)于“mybatis屬性的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。