六、通過mapper介面載入對應檔

來源:互聯網
上載者:User

標籤:輸入   設定   iba   org   efi   day   sql   apach   tab   

通過 mapper 介面載入對應檔,這對於後面 ssm三大架構 的整合是非常重要的。那麼什麼是通過 mapper 介面載入對應檔呢?

  我們首先看以前的做法,在全域設定檔 mybatis-configuration.xml 通過 <mappers> 標籤來載入對應檔,那麼如果我們項目足夠大,有很多對應檔呢,難道我們每一個對應檔都這樣載入嗎,這樣肯定是不行的,那麼我們就需要使用 mapper 介面來載入對應檔

  以前的做法:

  

  改進做法:使用 mapper 介面來載入對應檔

回到頂部1、定義 userMapper 介面
12345678910111213141516171819202122 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;}

 

回到頂部2、在全域設定檔 mybatis-configuration.xml 檔案中載入 UserMapper 介面(單個載入對應檔)

 

回到頂部3、編寫UserMapper.xml 檔案
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 <?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>

  

回到頂部4、測試
123456789 //根據id查詢user表資料    @Test    public void testSelectUserById() throws Exception{        //擷取mapper介面        UserMapper userMapper = session.getMapper(UserMapper.class);        User user = userMapper.selectUserById(1);        System.out.println(user);        session.close();    }

  

 

 

回到頂部5、批量載入對應檔
123456 <mappers>       <!--批量載入mapper          指定 mapper 介面的包名,mybatis自動掃描包下的mapper介面進行載入         -->       <package name="com.ys.mapper"/></mappers>

  

 

回到頂部6、注意 

  1、UserMapper 介面必須要和 UserMapper.xml 檔案同名且在同一個包下,也就是說 UserMapper.xml 檔案中的namespace是UserMapper介面的全類名

  

 

  2、UserMapper介面中的方法名和 UserMapper.xml 檔案中定義的 id 一致

 

  3、UserMapper介面輸入參數類型要和 UserMapper.xml 中定義的 parameterType 一致

 

  4、UserMapper介面返回資料類型要和 UserMapper.xml 中定義的 resultType 一致

六、通過mapper介面載入對應檔

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.