您好,登錄后才能下訂單哦!
本篇內容介紹了“怎么使用MyBatis高級映射ResultMap解決屬性問題”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
之前我們提到了用resultMap解決數據表中字段名與bean屬性名不一致的問題,這是resultMap的一種簡單實現。下面我們來看如何利用ResultMap來解決更復雜的屬性問題
場景:當我們需要聯查兩張表的時候,通常會在sql層面對兩個表進行外鍵關聯。那么設置了外鍵的從表對應的實體Bean中就需要定義一個對應主表的實例對象。
示例:
// 學生表 從表 public class Student { private int id; private String name; private Teacher teacher; // 定義主表對應bean實例 // 教師表 主表 public class Teacher { private int id; private String name; //teacher接口中定義方法 @Select("select name from teacher where id = #{tid}") Teacher getTeacherById(@Param("tid") int id); // student接口中定義方法 List<Student> getStudent();
sql:
-- 可以直接利用多表聯查sql 但是最終無法正確輸出teacher類信息 select * from student s join teacher t on s.tid = t.id; -- 將上面的sql拆開成兩句 先查詢到學生信息 用學生的tid字段對應教師的id查詢教師 select * from student; select * from teacher where id = #{tid}
打印日志:
Setting autocommit to false on JDBC Connection [com.mysql.cj.jdbc.ConnectionImpl@79da8dc5]
==> Preparing: select * from student;
==> Parameters:
<== Columns: id, name, tid
<== Row: 1, 小子三, 1
<== Row: 2, 小子四, 1
<== Row: 3, 小子五, 1
<== Row: 4, 小子六, 1
<== Row: 5, 小子七, 1
<== Row: 6, 小子八, 1
<== Total: 6
Student{id=1, name='小子三', teacher=null}
Student{id=2, name='小子四', teacher=null}
Student{id=3, name='小子五', teacher=null}
Student{id=4, name='小子六', teacher=null}
Student{id=5, name='小子七', teacher=null}
Student{id=6, name='小子八', teacher=null}
可以很清晰的看出sql一共只執行了一條,而根據學生表tid字段查詢教師信息的sql根本就沒有運行
下面我們對select * from teacher where id = #{tid}
這句sql返回的結果配置,利用resultMap為其配置合理的結果集來接收查詢到的結果
resultMap及sql配置如下:
<resultMap id="studentTeacher" type="student"> <!-- 普通映射 --> <result column="id" property="id"/> <result column="name" property="name"/> <!-- 復雜映射 association對象 collection集合 --> <association property="teacher" column="tid" javaType="teacher" select="getTeacherById"/> <!-- student表中tid字段對應實體類student中的teacher屬性 對應程序中的teacher類型 執行select語句 --> </resultMap>
最終打印結果如下:
Setting autocommit to false on JDBC Connection [com.mysql.cj.jdbc.ConnectionImpl@79da8dc5]
// 執行sql1
==> Preparing: select * from student;
==> Parameters:
<== Columns: id, name, tid
<== Row: 1, 小子三, 1
// 執行sql1
====> Preparing: select * from teacher where id = ?
====> Parameters: 1(Integer)
<==== Columns: id, name
<==== Row: 1, 秦老師
<==== Total: 1
<== Row: 2, 小子四, 1
<== Row: 3, 小子五, 1
<== Row: 4, 小子六, 1
<== Row: 5, 小子七, 1
<== Row: 6, 小子八, 1
<== Total: 6
// 最終teacher也以對象的形式打印出來
Student{id=1, name='小子三', teacher=Teacher{id=1, name='秦老師'}}
Student{id=2, name='小子四', teacher=Teacher{id=1, name='秦老師'}}
Student{id=3, name='小子五', teacher=Teacher{id=1, name='秦老師'}}
Student{id=4, name='小子六', teacher=Teacher{id=1, name='秦老師'}}
Student{id=5, name='小子七', teacher=Teacher{id=1, name='秦老師'}}
Student{id=6, name='小子八', teacher=Teacher{id=1, name='秦老師'}}
studentMapper.xml配置resultMap如下:
<!-- 按照結果嵌套 --> <select id="getStudent2" resultMap="studentTeacher2"> select s.id sid,s.name sname,t.id tid,t.name tname from student s join teacher t on s.tid = t.id; </select> <resultMap id="studentTeacher2" type="student"> <result column="sid" property="id"/> <result column="sname" property="name"/> <association property="teacher" javaType="teacher"> <result column="tid" property="id"/> <result property="name" column="tname"/> </association> </resultMap>
如果采用結果嵌套配置,此時不論bean類屬性是否是基本類型都需要用result進行映射,否則輸出結果就會采用默認值
一對多關系處理,依舊以上述老師和學生為例。但是實體類需要修改,如下:
public class Teacher { private int id; private String name; private List<Student> student; public class Student { private int id; private String name; private int tid;
一個老師下對應多個學生,所以我們定義一個集合用于存儲學生
下面嘗試獲取指定老師下的所有學生信息及該老師信息
程序:
// TeacherMapper // 指定老師下面的所有學生 Teacher getTeaById(@Param("teaId") int id);
resultMap配置
<select id="getTeaById" resultMap="TeaStu"> select s.id sid, s.name sname, t.name tname, t.id tpid,s.tid from student s ,teacher t where t.id = s.tid and t.id = #{teaId}; </select> <resultMap id="TeaStu" type="Teacher"> <result column="tpid" property="id"/> <result column="tname" property="name"/> <collection property="student" ofType="student"> <result column="sid" property="id"/> <result column="sname" property="name"/> <result column="tid" property="tid" /> </collection> </resultMap>
因為復雜屬性的類型為集合,所以我們在配置resultMap結果集映射時不再使用association對象,換成collection集合。在配置collection與association不同的是將JavaType(Java類型)換成了OfType其他依舊不變
TeacherMapper.xml配置resultMap
<select id="getTeaById" resultMap="TeaStu2"> select id,name from teacher where id = #{teaId} </select> <resultMap id="TeaStu2" type="teacher"> <result column="id" property="id"/> <result column="name" property="name"/> <collection property="student" javaType="ArrayList" ofType="student" select="getStuList" column="id"/> </resultMap> <select id="getStuList" resultType="student"> select id,name,tid from student where tid = #{tid} </select>
“怎么使用MyBatis高級映射ResultMap解決屬性問題”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。