我是靠谱客的博主 清新秀发,最近开发中收集的这篇文章主要介绍Mybatis的多级查询,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

举例:1个用户有多个订单,1个订单对应1个用户,那么: 1、查询用户时要不要直接把关联的订单查询出来?
查询用户时不查询订单信息,get订单列表时再去数据库查询,也就是延迟加载(查询)
优点:提升了数据库性能(查单表肯定比关联快)
缺点:get订单列表时还要再去数据库查询,需要等待,

2、查询订单时要不要把关联的用户查询出来?
查询订单时把用户信息查询出来,因为1对1的数据量很少可以直接查询

常用的关联数据查询有2种:关联查询、嵌套查询,使用嵌套查询来实现延迟加载的
1、关联查询:将所有的信息都查询出来,和中设置属性对应

<resultMap id="userMap" type="User">
    <id property="id" column="id"></id>
    <result property="username" column="username"></result>
    <result property="password" column="password"></result>
    <result property="birthday" column="birthday"></result>
    <collection property="orderList" ofType="com.lg.pojo.Order" javaType="list">
        <id property="id" column="orderId"></id>
        <result property="ordertime" column="ordertime"></result>
        <result property="total" column="total"></result>
    </collection>
</resultMap>

<select id="findUsers" resultMap="userMap">
    select u.*,o.id orderId,o.ordertime,o.total,o.uid from user u LEFT JOIN orders o on u.id = o.uid ;limit
</select> 

2、嵌套查询:查询单表,然后将javabean类型的属性或者集合指定具体的查询select=“statement.id”,column指定传入的参数
(1) IUserMapper.xml

<resultMap id="lazyUserMap" type="user">
    <id property="id" column="id"></id>
    <result property="username" column="username"></result>
    <result property="password" column="password"></result>
    <result property="birthday" column="birthday"></result>
    <collection // association一样
            property="orderList" // 该属性为orderList集合
            fetchType="lazy" // 设置为延迟加载 lazy eager(立刻加载)
            ofType="com.lg.pojo.Order" 
            select="com.lg.mapper.IOrderMapper.findOrdersById" //orderList赋值时通过该指定的select查询数据
            column="id" //指定的select传入的参数,也就是需要传入user的id属性
    > 
    </collection>
</resultMap>

<select id="selectAllUsers" resultMap="lazyUserMap">
    select * from user
</select>

最后

以上就是清新秀发为你收集整理的Mybatis的多级查询的全部内容,希望文章能够帮你解决Mybatis的多级查询所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部