mybatis入門基礎(七)----延遲載入

阿赫瓦里發表於2015-07-08

一、什麼是延遲載入

  resultMap可以實現高階對映(使用associationcollection實現一對一及一對多對映),associationcollection具備延遲載入功能。

需求:如果查詢訂單並且關聯查詢使用者資訊。如果先查詢訂單資訊即可滿足要求,當我們需要查詢使用者資訊時再查詢使用者資訊。把對使用者資訊的按需去查詢就是延遲載入。

延遲載入:先從單表查詢、需要時再從關聯表去關聯查詢,大大提高資料庫效能,因為查詢單表要比關聯查詢多張錶速度要快。

二、使用association實現延遲載入

需要定義兩個mapper的方法對應的statement

1、只查詢訂單資訊

  SELECT * FROM orders

在查詢訂單的statement中使用association去延遲載入(執行)下邊的satatement(關聯查詢使用者資訊)

2、關聯查詢使用者資訊

  通過上邊查詢到的訂單資訊中user_id去關聯查詢使用者資訊

OrderMapper.xml的延遲載入的核心程式碼:

  使用association中的select指定延遲載入去執行的statementid

    <!-- 查詢訂單關聯查詢使用者,使用者資訊按需延遲載入 的 resultMap定義 -->
    <resultMap type="com.mybatis.entity.Orders" id="ordersUserLazyLoading">
                <!--對訂單資訊進行對映配置  -->
            <id column="id" property="id"/>
            <result column="user_id" property="userid"/>
            <result column="number" property="number"/>
            <result column="createtime" property="createTime"/>
            <result column="note" property="note"/>
             <!-- 實現對使用者資訊進行延遲載入
                select:指定延遲載入需要執行的statement的id(是根據user_id查詢使用者資訊的statement) 
                column:訂單資訊中關聯使用者資訊查詢的列,是user_id
                關聯查詢的sql理解為:
                 SELECT orders.*,
                    (SELECT username FROM USER WHERE orders.user_id = user.id)username,
                    (SELECT sex FROM USER WHERE orders.user_id = user.id)sex
                 FROM orders
            -->
            <association property="user"  javaType="com.mybatis.entity.User" select="findUserById" column="user_id"/>
    </resultMap>
        <!-- 根據Id查詢使用者,用於測試延遲載入 -->
        <select id="findUserById" parameterType="int" resultType="com.mybatis.entity.User" >
                select * from t_user where id=#{id}
        </select>
    <!-- 查詢訂單關聯使用者,使用者資訊延遲載入 -->
    <select id="findOrdersUserLazyLoading" resultMap="ordersUserLazyLoading">
            select * from orders
    </select>    

OrderMapper.java的程式碼:

public interface OrdersCustomMapper {
    /**查詢訂單,關聯查詢使用者,使用者按需延遲載入*/
    public List<Orders>findOrdersUserLazyLoading();
    /**根據Id查詢使用者(這個方法本應該放在UserMapper類的,測試方便先放在這)*/
    public User findUserById(int id);
}

測試思路及程式碼:

1、執行上邊mapper方法(findOrdersUserLazyLoading),內部去呼叫OrdersMapperCustom中的findOrdersUserLazyLoading只查詢orders資訊(單表)。

2、在程式中去遍歷上一步驟查詢出的List<Orders>,當我們呼叫Orders中的getUser方法時,開始進行延遲載入。

3、延遲載入,去呼叫findUserbyId這個方法獲取使用者資訊。

// 查詢使用者關聯查詢使用者,使用者資訊延遲載入
        @Test
        public void TestFindOrdersUserLazyLoading() {
            SqlSession sqlSession = sqlSessionFactory.openSession();
            // 建立代理物件
            OrdersCustomMapper oc = sqlSession.getMapper(OrdersCustomMapper.class);
            // 呼叫mapper的方法
            List<Orders> list = oc.findOrdersUserLazyLoading();
            for(Orders order: list){
                //執行getUser()去查詢使用者資訊,這裡實現延遲載入
                User user = order.getUser();
                System.out.println(user);
            }
            sqlSession.close();
        }

三、延遲載入在mybatis核心配置檔案sqlMapConfig.xml中的配置

mybatis預設沒有開啟延遲載入,需要在SqlMapConfig.xmlsetting配置。

mybatis核心配置檔案中配置:

    lazyLoadingEnabled、aggressiveLazyLoading

設定項

描述

允許值

預設值

lazyLoadingEnabled

全域性性設定懶載入。如果設為‘false’,則所有相關聯的都會被初始化載入。

true | false

false

aggressiveLazyLoading

當設定為‘true’的時候,懶載入的物件可能被任何懶屬性全部載入。否則,每個屬性都按需載入。

true | false

true

<!-- 全域性引數的配置 -->
    <settings>
            <!--開啟延遲載入的開關  -->
        <setting name="lazyLoadingEnabled" value="true"/>
            <!--將積極載入改為消極載入及按需載入  -->
        <setting name="aggressiveLazyLoading" value="false"/>
    </settings>

小結:使用延遲載入方法,先去查詢簡單的sql最好單表,也可以關聯查詢),再去按需要載入關聯查詢的其它資訊。

相關文章