溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在mybatis中延遲加載Lazy策略

發布時間:2021-05-18 17:39:45 來源:億速云 閱讀:166 作者:Leah 欄目:編程語言

這篇文章給大家介紹怎么在mybatis中延遲加載Lazy策略,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

1.一對一延遲加載:

假設數據庫中有person表和card表:其中person表中有字段pid,pname,page,psex,cid,card表中有字段cid,cnum;

假設要查詢某個人的姓名和身份證號碼:

原理:在查詢姓名時,實際本沒有查詢出身份證號碼的信息,只有當前臺使用身份證號時才發出對card的查詢,需要查詢出身份證號碼是采取查詢的一種策略;

實現實例:

實現步驟:

       1-導入mybatis 的依賴jar包

       2-添加log4j文件 (可查看內存中實際執行的程序)

1-原理:只有當前臺使用身份證號時才發出對card的查詢,否則只發出person信息的查詢
          2-開啟lazy:在conf.xml

 <settings>
     <setting name="lazyLoadingEnabled" value="true"/>
     <setting name="aggressiveLazyLoading" value="false"/>
   </settings>

3.實現:

(1)在mapper.xml映射文件中:

<select id="findCid" parameterType="int" resultType="card"> 
    select * from card where cid=#{value} 
  </select> 
  <resultMap type="person" id="p_c1"> 
    <id column="pid" property="pid" /> 
    <result column="pname" property="pname" /> 
    <result column="page" property="page" /> 
    <result column="psex" property="psex" /> 
    <association property="card" javaType="card" select="findCid" 
      column="cid"> 
    </association> 
  </resultMap> 
  <select id="selectpersonAndCardLazyByPid" parameterType="int" 
    resultMap="p_c1"> 
    SELECT * FROM person where pid=#{value} 
  </select>

     1-select:指定關聯的查詢語句

     2-column:指定主語句中的哪個字段的值作為參數傳遞給從sql語句

(2)在mapper接口中定義方法:

public Person selectpersonAndCardLazyByPid(int pid);

(3)使用junit測試結果:

1.此處是只發出person信息的查詢;

@Test 
  public void testselectpersonAndCardLazyByPid(){//lazy策略一對1 
    Person p=pm.selectpersonAndCardLazyByPid(1); 
    //System.out.println(p); 
    System.out.println(p.getPname()+","); 
    //System.out.println(p.getPname()+","+p.getCard().getCnum()); 
  }

結果執行的查詢語句:

怎么在mybatis中延遲加載Lazy策略

2.當前臺使用身份證號時才發出對card的查詢

@Test 
  public void testselectpersonAndCardLazyByPid(){//lazy策略一對1 
    Person p=pm.selectpersonAndCardLazyByPid(1); 
    //System.out.println(p); 
    System.out.println(p.getPname()+","); 
    System.out.println(p.getPname()+","+p.getCard().getCnum());//當前臺使用身份證號時才發出對card的查詢 
  }

結果執行的查詢語句:

怎么在mybatis中延遲加載Lazy策略

2.一對多延遲加載:

實現實例:

假設數據庫中有person表和card身份信息表,adder地址表:其中person表中有字段pid,pname,page,psex,cid,card表中有字段cid,cnum;adder表有字段aid,ashi,pid

假設要查詢某個人的姓名和住址,身份證號碼:

(1)mapper.xml映射文件:

<!-- lazy策略一對多 --> 
  <select id="fingCard_Adder" parameterType="int" resultType="adder"> 
    select * from adder where pid=#{value} 
  </select> 
  <select id="findCid1" parameterType="int" resultType="card"> 
    select * from card where cid=#{value} 
  </select> 
  <resultMap type="person" id="p_c1_a1"> 
    <id column="pid" property="pid" /> 
    <result column="pname" property="pname" /> 
    <result column="page" property="page" /> 
    <result column="psex" property="psex" /> 
    <association property="card" javaType="card" select="findCid1" 
      column="cid"> 
    </association> 
    <collection property="adder" ofType="Adder" select="fingCard_Adder" 
      column="pid"> 
    </collection> 
  </resultMap> 
  <select id="selectpersonAndCardAndAdderLazyByPid" parameterType="int" 
    resultMap="p_c1_a1"> 
    SELECT * FROM person where pid=#{value} 
  </select>

(2)mapper接口定義方法:

1.此處是只發出person信息的查詢;

@Test 
public void testselectpersonAndCardAndAdderLazyByPid(){//lazy策略一對多 
  Person p=pm.selectpersonAndCardAndAdderLazyByPid(1); 
  System.out.println(p.getPname()+",");////此處是只發出person信息的查詢 
}

結果執行的查詢語句:

怎么在mybatis中延遲加載Lazy策略

2.此處是發出person信息和身份信息的查詢;

@Test 
public void testselectpersonAndCardAndAdderLazyByPid(){//lazy策略一對多 
  Person p=pm.selectpersonAndCardAndAdderLazyByPid(1); 
  System.out.println(p.getPname()+",");//此處是只發出person信息的查詢; 
  System.out.println(p.getPname()+","+p.getCard().getCnum());//此處是發出person信息和身份信息的查詢; 
}

 結果執行的查詢語句:

怎么在mybatis中延遲加載Lazy策略

3.此處發出person信息和身份信息,地址信息的查詢;

@Test 
public void testselectpersonAndCardAndAdderLazyByPid(){//lazy策略一對多 
  Person p=pm.selectpersonAndCardAndAdderLazyByPid(1); 
  System.out.println(p.getPname()+",");//此處是只發出person信息的查詢; 
  System.out.println(p.getPname()+","+p.getCard().getCnum());//此處是發出person信息和身份信息的查詢; 
  //System.out.println(p.getPname()+","+p.getCard().getCnum()); 
  for (Adder adder : p.getAdder()) {////此處發出person信息和身份信息,地址信息的查詢; 
    System.out.println(adder.getAshi()); 
  }   
}

 結果執行的查詢語句:

怎么在mybatis中延遲加載Lazy策略

關于怎么在mybatis中延遲加載Lazy策略就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

亚洲午夜精品一区二区_中文无码日韩欧免_久久香蕉精品视频_欧美主播一区二区三区美女