項目中常常會使用到一對多的查詢場景,可是PageHelper對這種嵌套查詢的支持不夠,若是是一對多的列表查詢,返回的分頁結果是不對的
參考Github上的說明:https://github.com/pagehelper...java
對於一對多的列表查詢,有兩種方式解決
一、在代碼中處理。單獨修改分頁查詢的resultMap,刪除collection標籤,而後在代碼中遍歷結果,查詢子集git
二、使用mybatis提供的方法解決,具體以下github
定義兩個resultMap,一個給分頁查詢使用,一個給其他查詢使用sql
<resultMap id="BaseMap" type="com.xx.oo.Activity"> <id column="id" property="id" jdbcType="INTEGER"/> .... </resultMap> <resultMap id="ResultMap" type="com.xx.oo.Activity" extends="BaseMap"> <collection property="templates" ofType="com.xx.oo.Template"> <id column="pt_id" property="id" jdbcType="INTEGER"/> <result column="pt_title" property="title" jdbcType="VARCHAR"/> </collection> </resultMap> <resultMap id="RichResultMap" type="com.xx.oo.Activity" extends="BaseMap"> <!--property:對應JavaBean中的字段--> <!--ofType:對應JavaBean的類型--> <!--javaType:對應返回值的類型--> <!--column:對應數據庫column的字段,不是JavaBean中的字段--> <!--select:對應查詢子集的sql--> <collection property="templates" ofType="com.xx.oo.Template" javaType="java.util.List" column="id" select="queryTemplateById"> <id column="pt_id" property="id" jdbcType="INTEGER"/> <result column="pt_title" property="title" jdbcType="VARCHAR"/> </collection> </resultMap> <resultMap id="template" type="com.xx.oo.Template"> <id column="pt_id" property="id" jdbcType="INTEGER"/> <result column="pt_title" property="title" jdbcType="VARCHAR"/> </resultMap>
須要分頁的查詢,使用RichResultMap。先定義一個查詢子集的sql數據庫
<!--這裏的#{id}參數就是collection中定義的column字段--> <select id="queryTemplateById" parameterType="java.lang.Integer" resultMap="template"> select id pt_id, title pt_title from t_activity_template where is_delete=0 and activity_id = #{id} order by sort_number desc </select>
<select id="queryByPage" parameterType="com.xx.oo.ActivityPageRequest" resultMap="RichResultMap"> SELECT t.*,t1.real_name creator_name FROM t_activity t left join user t1 on t1.user_id = t.creator <where> t.is_delete = 0 <if test="criteria != null and criteria.length()>0">AND (t.activity_name like concat("%",#{criteria},"%"))</if> </where> ORDER BY t.id desc </select>
不須要分頁的普通查詢,使用ResultMapsegmentfault
<select id="queryById" parameterType="java.lang.Integer" resultMap="ResultMap"> SELECT t.*, t6.id pt_id, t1.title pt_title FROM t_activity t left join t_activity_template t1 on t.id=t6.activity_id and t1.is_delete=0 WHERE t.is_delete = 0 AND t.id = #{id} </select>