mybatis 詳解(六)------經過mapper接口加載映射文件

經過 mapper 接口加載映射文件,這對於後面 ssm三大框架 的整合是很是重要的。那麼什麼是經過 mapper 接口加載映射文件呢?java

  咱們首先看之前的作法,在全局配置文件 mybatis-configuration.xml 經過 <mappers> 標籤來加載映射文件,那麼若是咱們項目足夠大,有不少映射文件呢,難道咱們每個映射文件都這樣加載嗎,這樣確定是不行的,那麼咱們就須要使用 mapper 接口來加載映射文件sql

  之前的作法:數據庫

  

  改進作法:使用 mapper 接口來加載映射文件apache

一、定義 userMapper 接口

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package  com.ys.mapper;
 
import  org.apache.ibatis.annotations.Delete;
import  org.apache.ibatis.annotations.Insert;
import  org.apache.ibatis.annotations.Select;
import  org.apache.ibatis.annotations.Update;
 
import  com.ys.po.User;
 
public  interface  UserMapper {
     //根據 id 查詢 user 表數據
     public  User selectUserById( int  id)  throws  Exception;
 
     //向 user 表插入一條數據
     public  void  insertUser(User user)  throws  Exception;
     
     //根據 id 修改 user 表數據
     public  void  updateUserById(User user)  throws  Exception;
     
     //根據 id 刪除 user 表數據
     public  void  deleteUserById( int  id)  throws  Exception;
}

 

二、在全局配置文件 mybatis-configuration.xml 文件中加載 UserMapper 接口(單個加載映射文件)

 

三、編寫UserMapper.xml 文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?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= "com.ys.mapper.UserMapper" >
 
     
     <!-- 根據 id 查詢 user 表中的數據
        id:惟一標識符,此文件中的id值不能重複
        resultType:返回值類型,一條數據庫記錄也就對應實體類的一個對象
        parameterType:參數類型,也就是查詢條件的類型
     -->
     <select id= "selectUserById"
             resultType= "com.ys.po.User"  parameterType= "int" >
         <!-- 這裏和普通的sql 查詢語句差很少,後面的 #{id}表示佔位符,裏面不必定要寫id,寫啥均可以,可是不要空着 -->
         select * from user where id = #{id1}
     </select>
     
     
     
     <!-- 根據 id 更新 user 表的數據 -->
     <update id= "updateUserById"  parameterType= "com.ys.po.User" >
         update user u
             <!-- <set>
                 < if  test= "username != null and username != ''" >
                     u.username = #{username},
                 </ if >
                 < if  test= "sex != null and sex != ''" >
                     u.sex = #{sex}
                 </ if >
             </set> -->
             <trim prefix= "set"  suffixOverrides= "," >
                 < if  test= "username != null and username != ''" >
                     u.username = #{username},
                 </ if >
                 < if  test= "sex != null and sex != ''" >
                     u.sex = #{sex},
                 </ if >
             </trim>
         
          where id=#{id}
     </update>
     
     
     <!-- 向 user 表插入一條數據 -->
     <insert id= "insertUser"  parameterType= "com.ys.po.User" >
         <!-- 將插入的數據主鍵返回到 user 對象中
              keyProperty:將查詢到的主鍵設置到parameterType 指定到對象的那個屬性
              select LAST_INSERT_ID():查詢上一次執行insert 操做返回的主鍵id值,只適用於自增主鍵
              resultType:指定 select LAST_INSERT_ID() 的結果類型
              order:AFTER,相對於 select LAST_INSERT_ID()操做的順序
          -->
         <selectKey keyProperty= "id"  resultType= "int"  order= "AFTER" >
             select LAST_INSERT_ID()
         </selectKey>
         insert into user(username,sex,birthday,address)
             value(#{username},#{sex},#{birthday},#{address})
     </insert>
     
     
     
     <!-- 根據 id 刪除 user 表的數據 -->
     <delete id= "deleteUserById"  parameterType= "int" >
         delete from user where id=#{id}
     </delete>
     
</mapper>

  

四、測試

1
2
3
4
5
6
7
8
9
10
11
//根據id查詢user表數據
@Test
public  void  testSelectUserById(){
     /*這個字符串由 userMapper.xml 文件中 兩個部分構成
         <mapper namespace="com.ys.po.userMapper"> 的 namespace 的值
         <select id="selectUserById" > id 值*/
     String statement =  "com.ys.mapper.UserMapper.selectUserById" ;
     User user = session.selectOne(statement,  1 );
     System.out.println(user);
     session.close();
}

 

 

五、批量加載映射文件

1
2
3
4
5
6
<mappers>
        <!--批量加載mapper
           指定 mapper 接口的包名,mybatis自動掃描包下的mapper接口進行加載
          -->
        < package  name= "com.ys.mapper" />
</mappers>

  

 

六、注意 

  一、UserMapper 接口必需要和 UserMapper.xml 文件同名且在同一個包下,也就是說 UserMapper.xml 文件中的namespace是UserMapper接口的全類名session

  

 

  二、UserMapper接口中的方法名和 UserMapper.xml 文件中定義的 id 一致mybatis

 

  三、UserMapper接口輸入參數類型要和 UserMapper.xml 中定義的 parameterType 一致app

 

  四、UserMapper接口返回數據類型要和 UserMapper.xml 中定義的 resultType 一致框架

相關文章
相關標籤/搜索