多平台统一管理软件接口,如何实现多平台统一管理软件接口
328
2023-01-28
mybatis中延迟加载Lazy策略的方法
lazy策略原理:只有在使用查询sql返回的数据是才真正发出sql语句到数据库,否则不发出(主要用在多表的联合查询)
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
3.实现:
(1)在mapper.xml映射文件中:
select * from card where cid=#{value}
column="cid"> </association> 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()); } 结果执行的查询语句: 2.当前台使用身份证号时才发出对card的查询 @Test public void testselectpersonAndCardLazyByPid(){//lazy策略一对1 Person p=pm.selectpersonAndCardLazyByPid(1); //System.out.println(p)vgniUXKT; System.out.println(p.getPname()+","); System.out.println(p.getPname()+","+p.getCard().getCnum());//当前台使用身份证号时才发出对card的查询 } 结果执行的查询语句: 2.一对多延迟加载: 实现实例: 假设数据库中有person表和card身份信息表,adder地址表:其中person表中有字段pid,pname,page,psex,cid,card表中有字段cid,cnum;adder表有字段aid,ashi,pid 假设要查询某个人的姓名和住址,身份证号码: (1)mapper.xml映射文件: select * from adder where pid=#{value} select * from card where cid=#{value} column="cid"> column="pid"> (2)mapper接口定义方法: 1.此处是只发出person信息的查询; @Test public void testselectpersonAndCardAndAdderLazyByPid(){//lazy策略一对多 Person p=pm.selectpersonAndCardAndAdderLazyByPid(1); System.out.println(p.getPname()+",");////此处是只发出person信息的查询 } 结果执行的查询语句: 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信息和身份信息的查询; } 结果执行的查询语句: 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策略的方法,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,会及时回复大家的!
column="cid">
</association>
resultMap="p_c1">
SELECT * FROM person where pid=#{value}
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());
}
结果执行的查询语句:
2.当前台使用身份证号时才发出对card的查询
@Test
public void testselectpersonAndCardLazyByPid(){//lazy策略一对1
Person p=pm.selectpersonAndCardLazyByPid(1);
//System.out.println(p)vgniUXKT;
System.out.println(p.getPname()+",");
System.out.println(p.getPname()+","+p.getCard().getCnum());//当前台使用身份证号时才发出对card的查询
}
结果执行的查询语句:
2.一对多延迟加载:
实现实例:
假设数据库中有person表和card身份信息表,adder地址表:其中person表中有字段pid,pname,page,psex,cid,card表中有字段cid,cnum;adder表有字段aid,ashi,pid
假设要查询某个人的姓名和住址,身份证号码:
(1)mapper.xml映射文件:
select * from adder where pid=#{value}
select * from card where cid=#{value}
column="cid">
column="cid">
column="pid">
column="pid">
resultMap="p_c1_a1">
SELECT * FROM person where pid=#{value}
(2)mapper接口定义方法:
1.此处是只发出person信息的查询;
@Test
public void testselectpersonAndCardAndAdderLazyByPid(){//lazy策略一对多
Person p=pm.selectpersonAndCardAndAdderLazyByPid(1);
System.out.println(p.getPname()+",");////此处是只发出person信息的查询
}
结果执行的查询语句:
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信息和身份信息的查询;
}
结果执行的查询语句:
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策略的方法,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,会及时回复大家的!
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~