溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

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

發(fā)布時(shí)間:2021-05-18 17:39:45 來(lái)源:億速云 閱讀:158 作者:Leah 欄目:編程語(yǔ)言

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

1.一對(duì)一延遲加載:

假設(shè)數(shù)據(jù)庫(kù)中有person表和card表:其中person表中有字段pid,pname,page,psex,cid,card表中有字段cid,cnum;

假設(shè)要查詢(xún)某個(gè)人的姓名和身份證號(hào)碼:

原理:在查詢(xún)姓名時(shí),實(shí)際本沒(méi)有查詢(xún)出身份證號(hào)碼的信息,只有當(dāng)前臺(tái)使用身份證號(hào)時(shí)才發(fā)出對(duì)card的查詢(xún),需要查詢(xún)出身份證號(hào)碼是采取查詢(xún)的一種策略;

實(shí)現(xiàn)實(shí)例:

實(shí)現(xiàn)步驟:

       1-導(dǎo)入mybatis 的依賴(lài)jar包

       2-添加log4j文件 (可查看內(nèi)存中實(shí)際執(zhí)行的程序)

1-原理:只有當(dāng)前臺(tái)使用身份證號(hào)時(shí)才發(fā)出對(duì)card的查詢(xún),否則只發(fā)出person信息的查詢(xún)
          2-開(kāi)啟lazy:在conf.xml

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

3.實(shí)現(xiàn):

(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:指定關(guān)聯(lián)的查詢(xún)語(yǔ)句

     2-column:指定主語(yǔ)句中的哪個(gè)字段的值作為參數(shù)傳遞給從sql語(yǔ)句

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

public Person selectpersonAndCardLazyByPid(int pid);

(3)使用junit測(cè)試結(jié)果:

1.此處是只發(fā)出person信息的查詢(xún);

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

結(jié)果執(zhí)行的查詢(xún)語(yǔ)句:

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

2.當(dāng)前臺(tái)使用身份證號(hào)時(shí)才發(fā)出對(duì)card的查詢(xún)

@Test 
  public void testselectpersonAndCardLazyByPid(){//lazy策略一對(duì)1 
    Person p=pm.selectpersonAndCardLazyByPid(1); 
    //System.out.println(p); 
    System.out.println(p.getPname()+","); 
    System.out.println(p.getPname()+","+p.getCard().getCnum());//當(dāng)前臺(tái)使用身份證號(hào)時(shí)才發(fā)出對(duì)card的查詢(xún) 
  }

結(jié)果執(zhí)行的查詢(xún)語(yǔ)句:

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

2.一對(duì)多延遲加載:

實(shí)現(xiàn)實(shí)例:

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

假設(shè)要查詢(xún)某個(gè)人的姓名和住址,身份證號(hào)碼:

(1)mapper.xml映射文件:

<!-- lazy策略一對(duì)多 --> 
  <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.此處是只發(fā)出person信息的查詢(xún);

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

結(jié)果執(zhí)行的查詢(xún)語(yǔ)句:

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

2.此處是發(fā)出person信息和身份信息的查詢(xún);

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

 結(jié)果執(zhí)行的查詢(xún)語(yǔ)句:

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

3.此處發(fā)出person信息和身份信息,地址信息的查詢(xún);

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

 結(jié)果執(zhí)行的查詢(xún)語(yǔ)句:

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

關(guān)于怎么在mybatis中延遲加載Lazy策略就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI