上篇《深刻淺出Mybatis系列(七)---mapper映射文件配置之insert、update、delete》介紹了insert、update、delete的用法,本篇將介紹select、resultMap的用法。select無疑是咱們最經常使用,也是最複雜的,mybatis經過resultMap能幫助咱們很好地進行高級映射。下面就開始看看select 以及 resultMap的用法:html
先看select的配置吧:java
<select <!-- 1. id (必須配置) id是命名空間中的惟一標識符,可被用來表明這條語句。 一個命名空間(namespace) 對應一個dao接口, 這個id也應該對應dao裏面的某個方法(至關於方法的實現),所以id 應該與方法名一致 --> id="selectPerson" <!-- 2. parameterType (可選配置, 默認爲mybatis自動選擇處理) 將要傳入語句的參數的徹底限定類名或別名, 若是不配置,mybatis會經過ParameterHandler 根據參數類型默認選擇合適的typeHandler進行處理 parameterType 主要指定參數類型,能夠是int, short, long, string等類型,也能夠是複雜類型(如對象) --> parameterType="int" <!-- 3. resultType (resultType 與 resultMap 二選一配置) resultType用以指定返回類型,指定的類型能夠是基本類型,能夠是java容器,也能夠是javabean --> resultType="hashmap" <!-- 4. resultMap (resultType 與 resultMap 二選一配置) resultMap用於引用咱們經過 resultMap標籤訂義的映射類型,這也是mybatis組件高級複雜映射的關鍵 --> resultMap="personResultMap" <!-- 5. flushCache (可選配置) 將其設置爲 true,任什麼時候候只要語句被調用,都會致使本地緩存和二級緩存都會被清空,默認值:false --> flushCache="false" <!-- 6. useCache (可選配置) 將其設置爲 true,將會致使本條語句的結果被二級緩存,默認值:對 select 元素爲 true --> useCache="true" <!-- 7. timeout (可選配置) 這個設置是在拋出異常以前,驅動程序等待數據庫返回請求結果的秒數。默認值爲 unset(依賴驅動)--> timeout="10000" <!-- 8. fetchSize (可選配置) 這是嘗試影響驅動程序每次批量返回的結果行數和這個設置值相等。默認值爲 unset(依賴驅動)--> fetchSize="256" <!-- 9. statementType (可選配置) STATEMENT,PREPARED 或 CALLABLE 的一個。這會讓 MyBatis 分別使用 Statement,PreparedStatement 或 CallableStatement,默認值:PREPARED--> statementType="PREPARED" <!-- 10. resultSetType (可選配置) FORWARD_ONLY,SCROLL_SENSITIVE 或 SCROLL_INSENSITIVE 中的一個,默認值爲 unset (依賴驅動)--> resultSetType="FORWARD_ONLY">
配置看起來老是這麼多,不過實際經常使用的配置也就那麼幾個, 根據本身的須要吧,上面都已註明是否必須配置。sql
下面仍是上個demo及時練練手吧:數據庫
------------------------------------------------------------------------下面是針對select 的練手demo---------------------------------------------------------------------------------------apache
數據庫:新增兩張表(t_course, t_student)緩存
t_course:session
t_student:mybatis
其中,1個student可選擇多個course進行學習。app
咱們仍是拿上篇文章的demo, 繼續寫:ide
增長後,項目目錄以下所示:
Course.java:
package com.dy.entity; public class Course { private int id; private String name; private int deleteFlag; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getDeleteFlag() { return deleteFlag; } public void setDeleteFlag(int deleteFlag) { this.deleteFlag = deleteFlag; } }
Student.java:
package com.dy.entity; import java.util.List; public class Student { private int id; private String idCard; private String name; private List<Course> courseList; private int deleteFlag; public Student(int id, String idCard, String name, List<Course> courseList, int deleteFlag) { this.id = id; this.idCard = idCard; this.name = name; this.courseList = courseList; this.deleteFlag = deleteFlag; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getIdCard() { return idCard; } public void setIdCard(String idCard) { this.idCard = idCard; } public String getName() { return name; } public void setName(String name) { this.name = name; } public List<Course> getCourseList() { return courseList; } public void setCourseList(List<Course> courseList) { this.courseList = courseList; } public int getDeleteFlag() { return deleteFlag; } public void setDeleteFlag(int deleteFlag) { this.deleteFlag = deleteFlag; } }
CourseDao.java:
package com.dy.dao; import com.dy.entity.Course; public interface CourseDao { public Course findCourseById(int courseId); }
StudentDao.java:
package com.dy.dao; import com.dy.entity.Student; public interface StudentDao { public Student findStudentById(String idCard); }
courseDao.xml:
<mapper namespace="com.dy.dao.CourseDao"> <!-- 1.此處直接將resultType 設置爲course, 一看就知道我設置了別名吧,若是沒有設置別名,那麼resultType = com.dy.entity.Course。 2.可能細心的你會發現:Course.java中的屬性名與數據庫字段名不一致,下面,我就在sql語句中用了as, 使之匹配,固然方法不止一種, 在學習了resultMap以後,你能看到一種更直觀優雅的方式去將javabean中的屬性與數據庫字段名保持一致 3.findCourseById 與CourseDao中findCourseById方法對應, 那麼傳入的參數名稱以及類型也應該保持對應關係。 4.能夠看到,在sql語句中,經過#{}表達式能夠獲取參數。 5.下面這條sql語句,實際上的形式是怎麼樣的?還記得以前說過,mybatis默認爲preparedStatement吧,那麼,用咱們jdbc代碼來看,它其實就是: select course_id as id, course_name as name, course_delete_flg as deleteFlag from t_course where course_id=? --> <select id="findCourseById" resultType="course" > select course_id as id, course_name as name, course_delete_flg as deleteFlag from t_course where course_id=#{courseId} </select> </mapper>
CourseDaoTest.java:
package com.dy.dao; import java.io.IOException; import org.apache.ibatis.io.Resources; import org.apache.ibatis.session.SqlSession; import org.apache.ibatis.session.SqlSessionFactory; import org.apache.ibatis.session.SqlSessionFactoryBuilder; import org.junit.Test; import com.dy.entity.Course; public class CourseDaoTest { @Test public void findCourseById() { SqlSessionFactory sqlSessionFactory = getSessionFactory(); SqlSession sqlSession = sqlSessionFactory.openSession(); CourseDao courseDao = sqlSession.getMapper(CourseDao.class); Course course = courseDao.findCourseById(1); } //Mybatis 經過SqlSessionFactory獲取SqlSession, 而後才能經過SqlSession與數據庫進行交互 private static SqlSessionFactory getSessionFactory() { SqlSessionFactory sessionFactory = null; String resource = "mybatis-conf.xml"; try { sessionFactory = new SqlSessionFactoryBuilder().build(Resources .getResourceAsReader(resource)); } catch (IOException e) { e.printStackTrace(); } return sessionFactory; } }
上面的示例,咱們針對course, 簡單演示了 select的用法, 不過有個問題值得思考: 一個student能夠對應多個course, 那麼,在mybatis中如何處理這種一對多, 甚至於多對多,一對一的關係呢?
這兒,就不得不提到 resultMap 這個東西, mybatis的resultMap功能可謂十分強大,可以處理複雜的關係映射, 那麼resultMap 該怎麼配置呢? 別急,這就來了:
resultMap的配置:
<!-- 1.type 對應類型,能夠是javabean, 也能夠是其它 2.id 必須惟一, 用於標示這個resultMap的惟一性,在使用resultMap的時候,就是經過id指定 --> <resultMap type="" id=""> <!-- id, 惟一性,注意啦,這個id用於標示這個javabean對象的惟一性, 不必定會是數據庫的主鍵(不要把它理解爲數據庫對應表的主鍵) property屬性對應javabean的屬性名,column對應數據庫表的列名 (這樣,當javabean的屬性與數據庫對應表的列名不一致的時候,就能經過指定這個保持正常映射了) --> <id property="" column=""/> <!-- result與id相比, 對應普通屬性 --> <result property="" column=""/> <!-- constructor對應javabean中的構造方法 --> <constructor> <!-- idArg 對應構造方法中的id參數 --> <idArg column=""/> <!-- arg 對應構造方法中的普通參數 --> <arg column=""/> </constructor> <!-- collection,對應javabean中容器類型, 是實現一對多的關鍵 property 爲javabean中容器對應字段名 column 爲體如今數據庫中列名 ofType 就是指定javabean中容器指定的類型 --> <collection property="" column="" ofType=""></collection> <!-- association 爲關聯關係,是實現N對一的關鍵。 property 爲javabean中容器對應字段名 column 爲體如今數據庫中列名 javaType 指定關聯的類型 --> <association property="" column="" javaType=""></association> </resultMap>
好啦,知道resutMap怎麼配置後,我們當即接着上面的demo來練習一下吧:
------------------------------------------------------------------下面是用resultMap處理一對多關係的映射的示例-------------------------------------------------------------
一個student對應多個course, 典型的一對多,我們就來看看mybatis怎麼配置這種映射吧:
studentDao.xml:
<mapper namespace="com.dy.dao.StudentDao"> <!-- 這兒定義一個resultMap --> <resultMap type="student" id="studentMap"> <!-- 數據庫中主鍵是id, 可是我這兒倒是指定idCard爲主鍵,爲何? 剛剛講了,id用來表示惟一性, 咱們能夠認爲只要idCard同樣,那麼他就是同一個學生。 若是此處用數據庫中id, 那麼mybatis將會認爲數據庫中每條記錄都是一個student, 這顯然不符合邏輯 --> <id property="idCard" column="stu_id_card"/> <result property="id" column="stu_id"/> <result property="name" column="stu_name"/> <result property="deleteFlag" column="stu_delete_flg"/> <!-- 這兒就是實現一對多的關鍵。 在Student中,courseList爲List<Course>, 所以,ofType也應該與之對應(固然,我用了別名,否則要蛋疼的寫全名了)。 collection的子標籤是在指定Course的映射關係(因爲Course的javabean的屬性名與數據庫的列名不一致) --> <collection property="courseList" column="stu_course_id" ofType="Course"> <id property="id" column="course_id"/> <result property="name" column="course_name"/> <result property="deleteFlag" column="course_delete_flg"/> </collection> </resultMap> <!-- 這兒將返回類型設置成了上面指定的studentMap --> <select id="findStudentById" resultMap="studentMap"> SELECT s.*, c.* FROM t_student s LEFT JOIN t_course c ON s.stu_course_id=c.course_id WHERE s.stu_id_card=#{idCard} </select> </mapper>
StudentDaoTest.java:
package com.dy.dao; import java.io.IOException; import java.util.List; import org.apache.ibatis.io.Resources; import org.apache.ibatis.session.SqlSession; import org.apache.ibatis.session.SqlSessionFactory; import org.apache.ibatis.session.SqlSessionFactoryBuilder; import org.junit.Test; import com.dy.entity.Course; import com.dy.entity.Student; public class StudentDaoTest { @Test public void findCourseById() { SqlSessionFactory sqlSessionFactory = getSessionFactory(); SqlSession sqlSession = sqlSessionFactory.openSession(); StudentDao studentDao = sqlSession.getMapper(StudentDao.class); Student student = studentDao.findStudentById("20140101"); List<Course> courseList = student.getCourseList(); for (Course course: courseList) { System.out.println(course.getId() + " " + course.getName()); } } //Mybatis 經過SqlSessionFactory獲取SqlSession, 而後才能經過SqlSession與數據庫進行交互 private static SqlSessionFactory getSessionFactory() { SqlSessionFactory sessionFactory = null; String resource = "mybatis-conf.xml"; try { sessionFactory = new SqlSessionFactoryBuilder().build(Resources .getResourceAsReader(resource)); } catch (IOException e) { e.printStackTrace(); } return sessionFactory; } }
相信經過以上demo, 你們也可以使用mybatis的select 和 resultMap的用法了。上面demo只演示了一對多的映射,其實多對1、多對多也與它相似,因此我就沒演示了,有興趣的能夠本身動手再作作。
好啦,本次就寫到這兒了。(PS,生病一週了,因此到如今才更新博客)。
另附上demo, 須要的童鞋能夠前往下載:
demo 下載地址:http://pan.baidu.com/s/1qWjsDzA