mybatis 一对多查询collection的两种查询方式

第一种 一次性查询出结果然后封装(该方法不能在主表sql语句分页)
直接用collection标签映射,一次性查询所有记录,
其中tags、roles、files、对应实体类中的成员
查询结果是多条记录,然后mybatis根据主表ID封装
注意:这里不能采用分页查询。因为执行sql查询出的所有记录是未封装的记录。而我们想要的是封装后的分页查询

<resultMap type="KlbDocument" id="KlbDocumentResultById">
        <id     property="documentId"       column="document_id"  />
        <result property="docName"       column="doc_Name"   />
        <result property="categoryId"     column="category_id"   />
        <result property="validity"  column="validity"  />
        <result property="hot"          column="hot"          />
        <result property="comment"       column="comment"       />
        <result property="delFlag"     column="del_flag"     />
        <result property="createTime"       column="create_time"       />
        <result property="updateTime"      column="update_time"     />
        <result property="createBy"      column="create_by"     />
        <result property="updateBy"    column="update_by"   />
        <collection property="tags" ofType="KlbDocTag" >
            <id     property="id"       column="tag_id"  />
            <result property="tagName"       column="tag_name"      />
        </collection>
        <collection  property="roles"  ofType="KlbDocRole" >
            <id     property="id"       column
  • 4
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值