上篇介紹了insert、update、delete的用法,本篇將介紹select、resultMap的用法。select無疑是咱們最經常使用,也是最複雜的,mybatis經過resultMap能幫助咱們很好地進行高級映射。下面就開始看看select 以及 resultMap的用法: java
先看select的配置吧: sql
<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">
配置看起來老是這麼多,不過實際經常使用的配置也就那麼幾個, 根據本身的須要吧,上面都已註明是否必須配置。 數據庫
下面仍是上個demo及時練練手吧: apache
------------------------------------------------------------------------下面是針對select 的練手demo--------------------------------------------------------------------------------------- 緩存
數據庫:新增兩張表(course, studentNew) 網絡
DROP TABLE IF EXISTS `course`; CREATE TABLE `course` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `deleteFlag` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of course -- ---------------------------- INSERT INTO `course` VALUES ('1', '市場營銷', '1'); INSERT INTO `course` VALUES ('2', '國際貿易', '0'); INSERT INTO `course` VALUES ('3', '網頁設計', '0'); INSERT INTO `course` VALUES ('4', '計算機應用', '0'); INSERT INTO `course` VALUES ('5', '網絡操做系統', '0'); -- ---------------------------- -- Table structure for `studentnew` -- ---------------------------- DROP TABLE IF EXISTS `studentnew`; CREATE TABLE `studentnew` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `idcard` int(11) DEFAULT NULL, `courseid` int(11) DEFAULT NULL, `deleteflag` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of studentnew -- ---------------------------- INSERT INTO `studentnew` VALUES ('10', '張三', '20140101', '1', '0'); INSERT INTO `studentnew` VALUES ('11', '張三', '20140101', '2', '0'); INSERT INTO `studentnew` VALUES ('12', '張三', '20140101', '3', '0'); INSERT INTO `studentnew` VALUES ('13', '李四', '20140102', '2', '0'); INSERT INTO `studentnew` VALUES ('14', '王五', '20140103', '3', '0'); INSERT INTO `studentnew` VALUES ('15', '王五', '20140103', '5', '0'); INSERT INTO `studentnew` VALUES ('16', '張小虎', '20140104', '4', '0'); INSERT INTO `studentnew` VALUES ('17', '趙子龍', '20140105', '4', '0');
其中,1個student可選擇多個course進行學習。 session
咱們仍是拿上篇文章的demo, 繼續寫: mybatis
增長後,項目目錄以下所示: app
courseDao.xml: 函數
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace = "dao.CourseDao"> <select id="findCourseById" resultType = "Course"> select * from course where id=#{courseId} </select> </mapper>
package test; import model.Course; 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 dao.CourseDao; public class CourseDaoTest { public static void main(String[] args) { // TODO Auto-generated method stub SqlSessionFactory sqlSessionFactory = getSessionFactory(); SqlSession sqlSession = sqlSessionFactory.openSession(); CourseDao courseDao = sqlSession.getMapper(CourseDao.class); Course course = courseDao.findCourseById(1); System.out.println(course); } private static SqlSessionFactory getSessionFactory(){ SqlSessionFactory sessionFactory = null; String resource = "./configuration.xml"; try { sessionFactory = new SqlSessionFactoryBuilder().build(Resources.getResourceAsReader(resource)); } catch (Exception e) { // TODO: handle exception } return sessionFactory; } }
上面的示例,咱們針對course, 簡單演示了 select的用法, 不過有個問題值得思考: 一個studentnew能夠對應多個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處理一對多關係的映射的示例-------------------------------------------------------------
一個studentnew對應多個course, 典型的一對多,我們就來看看mybatis怎麼配置這種映射吧:
studentnewDao.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace = "dao.StudentNewDao"> <resultMap type = "StudentNew" id = "StudnetMap"> <id property = "idCard" column = "idcard"/> <result property = "id" column = "id"/> <result property = "name" column = "name"/> <result property = "deleteFlag" column = "deleteflag"/> <collection property = "courseList" column = "coueseid" ofType = "Course"> <id property = "id" column = "id"/> <result property = "name" column = "name"/> <result property = "deleteFlag" column = "deleteFlag"/> </collection> </resultMap> <select id="findStudentNewById" resultMap = "StudnetMap"> SELECT s.*, c.* FROM studentnew s LEFT JOIN course c ON s.courseid=c.id WHERE s.idcard=#{idCard} </select> </mapper>
package test; import java.io.IOException; import java.util.List; import model.Course; import model.StudentNew; 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 dao.StudentNewDao; public class StudentNewDaoTest { public static void main(String[] args) { // TODO Auto-generated method stub SqlSessionFactory sessionFactory = getSessionFactory(); SqlSession session = sessionFactory.openSession(); StudentNewDao studentNewDao = session.getMapper(StudentNewDao.class); StudentNew studentNew = studentNewDao.findStudentNewById("20140101"); List<Course> courses = studentNew.getCourseList(); for(Course c:courses){ System.out.println(c); } } private static SqlSessionFactory getSessionFactory(){ SqlSessionFactory sqlSessionFactory = null; String resource = "./configuration.xml"; try { sqlSessionFactory = new SqlSessionFactoryBuilder().build(Resources.getResourceAsReader(resource)); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } return sqlSessionFactory; } }
相信經過以上demo, 你們也可以使用mybatis的select 和 resultMap的用法了。上面demo只演示了一對多的映射,其實多對1、多對多也與它相似,因此我就沒演示了,有興趣的能夠本身動手再作作。
好啦,本次就寫到這兒了。(PS,生病一週了,因此到如今才更新博客)。
另附上demo, 須要的童鞋能夠前往下載:
demo 下載地址:http://pan.baidu.com/s/1qWjsDzA
另外值得注意的地方:studentNewDao若是重載了構造函數,必定要本身寫一個空的默認構造函數,不然報錯,
詳見:http://zhangsha1251.blog.163.com/blog/static/6262405320111037220994/