1. 程式人生 > >詳解Java的MyBatis框架中SQL語句對映部分的編寫

詳解Java的MyBatis框架中SQL語句對映部分的編寫

這篇文章主要介紹了Java的MyBatis框架中SQL語句對映部分的編寫,文中分為resultMap和增刪查改實現兩個部分來講解,需要的朋友可以參考下

1.resultMap

SQL 對映XML 檔案是所有sql語句放置的地方。需要定義一個workspace,一般定義為對應的介面類的路徑。寫好SQL語句對映檔案後,需要在MyBAtis配置檔案mappers標籤中引用,例如:?
123456<mappers> <mapper resource="com/liming/manager/data/mappers/UserMapper.xml" /> <mapper resource="com/liming/manager/data/mappers/StudentMapper.xml"
/> <mapper resource="com/liming/manager/data/mappers/ClassMapper.xml" /> <mapper resource="com/liming/manager/data/mappers/TeacherMapper.xml" /> </mappers>

  
當Java介面與XML檔案在一個相對路徑下時,可以不在myBatis配置檔案的mappers中宣告。

SQL 對映XML 檔案一些初級的元素:

(1). cache – 配置給定模式的快取
(2). cache-ref – 從別的模式中引用一個快取
(3). resultMap – 這是最複雜而卻強大的一個元素了,它描述如何從結果集中載入物件
(4). sql – 一個可以被其他語句複用的SQL 塊
(5). insert – 對映INSERT 語句
(6). update – 對映UPDATE 語句
(7). delete – 對映DELEETE 語句
(8). select  -  對映SELECT語句

1.1 resultMap
resultMap 是MyBatis 中最重要最強大的元素了。你可以讓你比使用JDBC 呼叫結果集省掉90%的程式碼,也可以讓你做許多JDBC 不支援的事。現實上,要寫一個等同類似於互動的對映這樣的複雜語句,可能要上千行的程式碼。ResultMaps的目的,就是這樣簡單的語句而不需要多餘的結果對映,更多複雜的語句,除了只要一些絕對必須的語句描述關係以外,再也不需要其它的。
resultMap屬性:type為java實體類;id為此resultMap的標識。
 
resultMap可以設定的對映:

(1). constructor – 用來將結果反射給一個例項化好的類的構造器
a) idArg – ID 引數;將結果集標記為ID,以方便全域性呼叫
b) arg –反射到構造器的通常結果

(2). id – ID 結果,將結果集標記為ID,以方便全域性呼叫

(3). result – 反射到JavaBean 屬性的普通結果

(4). association – 複雜型別的結合;多個結果合成的型別
a) nested result mappings – 幾resultMap 自身巢狀關聯,也可以引用到一個其它上

(5). collection –複雜型別集合a collection of complex types

(6). nested result mappings – resultMap 的集合,也可以引用到一個其它上

(7). discriminator – 使用一個結果值以決定使用哪個resultMap
a) case – 基本一些值的結果對映的case 情形
i. nested result mappings –一個case 情形本身就是一個結果對映,因此也可以包括一些相同的元素,也可以引用一個外部resultMap。
 
1.1.1 id、result
id、result是最簡單的對映,id為主鍵對映;result其他基本資料庫表字段到實體類屬性的對映。
最簡單的例子:

?
1234567<resultMap type="liming.student.manager.data.model.StudentEntity" id="studentResultMap"> <id property="studentId"    column="STUDENT_ID" javaType="String" jdbcType="VARCHAR"/> <result property="studentName"    column="STUDENT_NAME" javaType="String" jdbcType="VARCHAR"/> <result property="studentSex"    column="STUDENT_SEX" javaType="int" jdbcType="INTEGER"/> <result property="studentBirthday"  column="STUDENT_BIRTHDAY" javaType="Date" jdbcType="DATE"/> <result property="studentPhoto" column="STUDENT_PHOTO" javaType="byte[]" jdbcType="BLOB" typeHandler="org.apache.ibatis.type.BlobTypeHandler" /> </resultMap>

 
id、result語句屬性配置細節:

屬性

描述

property

需要對映到JavaBean 的屬性名稱。

column

資料表的列名或者標籤別名。

javaType

一個完整的類名,或者是一個類型別名。如果你匹配的是一個JavaBean,那MyBatis 通常會自行檢測到。然後,如果你是要對映到一個HashMap,那你需要指定javaType 要達到的目的。

jdbcType

資料表支援的型別列表。這個屬性只在insert,update 或delete 的時候針對允許空的列有用。JDBC 需要這項,但MyBatis 不需要。如果你是直接針對JDBC 編碼,且有允許空的列,而你要指定這項。

typeHandler

使用這個屬性可以覆寫型別處理器。這項值可以是一個完整的類名,也可以是一個類型別名。


支援的JDBC型別
       為了將來的引用,MyBatis 支援下列JDBC 型別,通過JdbcType 列舉:
BIT,FLOAT,CHAR,TIMESTAMP,OTHER,UNDEFINED,TINYINT,REAL,VARCHAR,BINARY,BLOB,NVARCHAR,SMALLINT,DOUBLE,LONGVARCHAR,VARBINARY,CLOB,NCHAR,INTEGER,NUMERIC,DATE,LONGVARBINARY,BOOLEAN,NCLOB,BIGINT,DECIMAL,TIME,NULL,CURSOR

1.1.2 constructor
我們使用id、result時候,需要定義java實體類的屬性對映到資料庫表的欄位上。這個時候是使用JavaBean實現的。當然我們也可以使用實體類的構造方法來實現值的對映,這個時候是通過構造方法引數的書寫的順序來進行賦值的。使用construcotr功能有限(例如使用collection級聯查詢)。上面使用id、result實現的功能就可以改為:?
12345678<resultMap type="StudentEntity" id="studentResultMap" > <constructor> <idArg javaType="String" column="STUDENT_ID"/> <arg javaType="String" column="STUDENT_NAME"/> <arg javaType="String" column="STUDENT_SEX"/> <arg javaType="Date" column="STUDENT_BIRTHDAY"/> </constructor> </resultMap>

 
當然,我們需要定義StudentEntity實體類的構造方法:

?
123456public StudentEntity(String studentID, String studentName, String studentSex, Date studentBirthday){ this.studentID = studentID; this.studentName = studentName; this.studentSex = studentSex; this.studentBirthday = studentBirthday; }

1.1.3 association聯合
聯合元素用來處理“一對一”的關係。需要指定對映的Java實體類的屬性,屬性的javaType(通常MyBatis 自己會識別)。對應的資料庫表的列名稱。如果想覆寫的話返回結果的值,需要指定typeHandler。
不同情況需要告訴MyBatis 如何載入一個聯合。MyBatis 可以用兩種方式載入:
(1). select: 執行一個其它對映的SQL 語句返回一個Java實體型別。較靈活;
(2). resultsMap: 使用一個巢狀的結果對映來處理通過join查詢結果集,對映成Java實體型別。
 
例如,一個班級對應一個班主任。
 首先定義好班級中的班主任屬性:

?
1private TeacherEntity teacherEntity;

 
1.1.3.1使用select實現聯合
 例:班級實體類中有班主任的屬性,通過聯合在得到一個班級實體時,同時映射出班主任實體。
 這樣可以直接複用在TeacherMapper.xml檔案中定義好的查詢teacher根據其ID的select語句。而且不需要修改寫好的SQL語句,只需要直接修改resultMap即可。

 ClassMapper.xml檔案部分內容:

?
1234567891011<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檔案部分內容:

?
1234567891011121314<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>

1.1.3.2使用resultMap實現聯合
 與上面同樣的功能,查詢班級,同時查詢其班主任。需在association中新增resultMap(在teacher的xml檔案中定義好的),新寫sql(查詢班級表left join教師表),不需要teacher的select。

 修改ClassMapper.xml檔案部分內容:

?
123456789101112<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檔案部分內容中。

1.1.4 collection聚集
聚集元素用來處理“一對多”的關係。需要指定對映的Java實體類的屬性,屬性的javaType(一般為ArrayList);列表中物件的型別ofType(Java實體類);對應的資料庫表的列名稱;
不同情況需要告訴MyBatis 如何載入一個聚集。MyBatis 可以用兩種方式載入:
(1). select: 執行一個其它對映的SQL 語句返回一個Java實體型別。較靈活;
(2). resultsMap: 使用一個巢狀的結果對映來處理通過join查詢結果集,對映成Java實體型別。
例如,一個班級有多個學生。
首先定義班級中的學生列表屬性:
private List<StudentEntity> studentList;  
1.1.4.1使用select實現聚集
 用法和聯合很類似,區別在於,這是一對多,所以一般對映過來的都是列表。所以這裡需要定義javaType為ArrayList,還需要定義列表中物件的型別ofType,以及必須設定的select的語句名稱(需要注意的是,這裡的查詢student的select語句條件必須是外來鍵classID)。 
ClassMapper.xml檔案部分內容:

?
123456789101112<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檔案部分內容:

?
12345678910111213<!-- java屬性,資料庫表字段之間的對映定義 --><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> <!-- 查詢學生list,根據班級id --><select id="getStudentByClassID" parameterType="String" resultMap="studentResultMap"> <include refid="selectStudentAll" /> WHERE ST.CLASS_ID = #{classID} </select>

1.1.4.2使用resultMap實現聚集
 使用resultMap,就需要重寫一個sql,left join學生表。

?
1234567891011121314151617<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檔案部分內容中。studentResultMap請見上面StudentMapper.xml檔案部分內容中。
1.1.5discr