91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PageHelper插件實現一對多查詢時的分頁問題

發布時間:2020-09-18 18:36:17 來源:腳本之家 閱讀:230 作者:JouyPub 欄目:編程語言

項目中經常會使用到一對多的查詢場景,但是PageHelper對這種嵌套查詢的支持不夠,如果是一對多的列表查詢,返回的分頁結果是不對的

參考Github上的說明:https://github.com/pagehelper/Mybatis-PageHelper/blob/master/wikis/zh/Important.md

對于一對多的列表查詢,有兩種方式解決

1、在代碼中處理。單獨修改分頁查詢的resultMap,刪除collection標簽,然后在代碼中遍歷結果,查詢子集

2、使用mybatis提供的方法解決,具體如下

定義兩個resultMap,一個給分頁查詢使用,一個給其余查詢使用

<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>

不需要分頁的普通查詢,使用ResultMap

<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>

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阜南县| 九龙城区| 宁强县| 岑巩县| 峨边| 汾阳市| 巴林左旗| 昌邑市| 衡东县| 泉州市| 岢岚县| 巴青县| 宿松县| 曲麻莱县| 蒙自县| 五河县| 南华县| 土默特右旗| 邛崃市| 大厂| 抚州市| 开江县| 桓仁| 朝阳县| 赣榆县| 宁乡县| 澄迈县| 都兰县| 禄劝| 灵丘县| 长岭县| 鄂伦春自治旗| 鱼台县| 广汉市| 德安县| 霍州市| 冀州市| 金堂县| 金乡县| 铁岭市| 孟州市|