侧边栏壁纸
  • 累计撰写 12 篇文章
  • 累计创建 11 个标签
  • 累计收到 2 条评论

目 录CONTENT

文章目录

MyBatis一对多查询PageHelper分页结果错误的问题

bingo
2021-11-22 / 0 评论 / 0 点赞 / 1,459 阅读 / 530 字 / 正在检测是否收录...
温馨提示:
本文最后更新于 2023-12-29,若内容或图片失效,请留言反馈。部分素材来自网络,若不小心影响到您的利益,请联系我们删除。

问题描述:

在MyBatis中使用collection实现一对多查询时,使用分页插件查询返回得到的分页结果是错误的。

解决办法:

  1. 在collection中使用子查询。

例子:

  1. 出现问题写法:
<resultMap type="com.learn.pojo.Student" id="StudentMap">
    <result property="id" column="id" jdbcType="INTEGER"/>
    <result property="StudentNo" column="student_no" jdbcType="VARCHAR"/>
    <result property="age" column="age" jdbcType="INTEGER"/>
    <result property="classNo" column="class_no" jdbcType="INTEGER"/>
    <result property="cardNo" column="card_no" jdbcType="VARCHAR"/>
    <collection property="teachers" ofType="com.learn.pojo.Teacher">
        <result property="id" column="teacher_id" jdbcType="INTEGER"/>
        <result property="class" column="class" jdbcType="VARCHAR"/>
    </collection>
</resultMap>
  1. 改进写法:
<resultMap type="com.learn.pojo.Student" id="StudentMap">
    <result property="id" column="id" jdbcType="INTEGER"/>
    <result property="StudentNo" column="student_no" jdbcType="VARCHAR"/>
    <result property="age" column="age" jdbcType="INTEGER"/>
    <result property="classNo" column="class_no" jdbcType="INTEGER"/>
    <result property="cardNo" column="card_no" jdbcType="VARCHAR"/>
    <collection property="teachers" ofType="com.learn.pojo.Teacher" column="id" select="selectTeacherByStudentId">
    </collection>
</resultMap>
<select id="selectTeacherByStudentId" parameterType="int" resultMap="com.learn.pojo.Teacher">
        SELECT teacher_id,class
        FROM teacher
        WHERE student_id=#{studentId}
</select>
  1. collection多参数传递写法:
<resultMap type="com.learn.pojo.xxxx" id="xxxxMap">
    <result property="property1" column="column1" jdbcType="INTEGER"/>
    <result property="property2" column="column2" jdbcType="INTEGER"/>
    <result property="property3" column="column3" jdbcType="INTEGER"/>
    <collection property="property4" ofType="com.learn.pojo.xxxx" column="{param1=column1,param2=column2...}" select="selectXXX">
    </collection>
</resultMap>
<select id="selectXXX" parameterType="int" resultMap="com.learn.pojo.xxxx">
        SELECT column5,column6,column7
        FROM xxx
        WHERE column5=#{param1},column6=#{param2}
</select>

参考文章: Mybatis问题:pageHelper与Collection导致的分页数据展示不一致问题mybatis collection 多条件查询

0

评论区