怎么在mybatis中延迟加载Lazy策略

这篇文章给大家介绍怎么在mybatis中延迟加载Lazy策略,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

成都网站建设、网站制作介绍好的网站是理念、设计和技术的结合。创新互联拥有的网站设计理念、多方位的设计风格、经验丰富的设计团队。提供PC端+手机端网站建设,用营销思维进行网站设计、采用先进技术开源代码、注重用户体验与SEO基础,将技术与创意整合到网站之中,以契合客户的方式做到创意性的视觉化效果。

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策略就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

网页名称:怎么在mybatis中延迟加载Lazy策略
标题来源:https://www.cdcxhl.com/article18/pdhodp.html

成都网站建设公司_创新互联,为您提供ChatGPT网站收录静态网站全网营销推广微信公众号小程序开发

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

网站建设网站维护公司