问题描述:
在MyBatis中使用collection实现一对多查询时,使用分页插件查询返回得到的分页结果是错误的。
解决办法:
- 在collection中使用子查询。
例子:
- 出现问题写法:
<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>
- 改进写法:
<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>
- 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 多条件查询
评论区