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

溫馨提示×

溫馨提示×

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

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

如何在springmvc與mybatis中使用sql 語句實現分頁

發布時間:2020-11-26 15:42:27 來源:億速云 閱讀:214 作者:Leah 欄目:編程語言

如何在springmvc與mybatis中使用sql 語句實現分頁?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

具體代碼如下所示:

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="ssmy.dao.UserDao">
 <resultMap type="ssmy.dto.User" id="User">
 <!--<resultMap type="User" id="User"> 如果在sprin文件里配置初始化 mybatis里配置了別名就是有-->
 <!-- 用id屬性來映射主鍵字段 -->
 <id property="id" column="id" jdbcType="INTEGER"/>
 <!-- 用result屬性來映射非主鍵字段 -->
 <result property="userName" column="userName" jdbcType="VARCHAR"/>
 <result property="password" column="password" jdbcType="VARCHAR"/>
 <result property="trueName" column="trueName" jdbcType="VARCHAR"/>
 <result property="email" column="email" jdbcType="VARCHAR"/>
 <result property="phone" column="phone" jdbcType="VARCHAR"/>
 <result property="roleName" column="roleName" jdbcType="VARCHAR"/> 
 </resultMap>
 <!--分頁返回類型list 可以使用map User對應的是resultMap size每頁的大小-->
 <select id="find" resultMap="User" parameterType="Map">
 select t2.* from 
 ( select t1.*,rownum rn from t_user t1 
 <where> 
 <if test ="userName !=null and userName !='' ">
 t1.userName like '%'||#{userName,jdbcType=VARCHAR}||'%'
 </if>
 </where>
 ) t2
 <where>
 <if test ="start !=null and start !=''">
 <![CDATA[and t2.rn >=#{start}]]>
 </if>
 <if test ="size !=null and size !=''">
 and <![CDATA[t2.rn <=#{size}]]>
 </if>
 </where>
 </select>
 <!--獲取總記錄數 -->
 <select id="getTotal" parameterType="Map" resultType="java.lang.Integer">
 select count(1) from t_user
 <where> 
 <if test ="userName !=null and userName !='' ">
 userName like '%'||#{userName,jdbcType=VARCHAR}||'%'
 </if>
 </where>
 </select>
 <!--<insert id="createser" parameterType="User">
 insert into NEWS_USER (id,username,password,email,usertype)
 values (#{id,jdbcType=NUMERIC},#{username,jdbcType=VARCHAR},
 #{password,jdbcType=VARCHAR},#{email,jdbcType=VARCHAR},1) 
 <selectKey resultType="int" order="BEFORE" keyProperty="id"> 
 select seq_id.nextval from dual 
 </selectKey>
 </insert>-->
</mapper>

看完上述內容,你們掌握如何在springmvc與mybatis中使用sql 語句實現分頁的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

东山县| 惠来县| 祁阳县| 延寿县| 盱眙县| 黄石市| 和林格尔县| 南城县| 开鲁县| 图们市| 广丰县| 衡水市| 英吉沙县| 江永县| 托克逊县| 玉山县| 马关县| 枣强县| 红安县| 景洪市| 铁岭县| 南丹县| 江达县| 苏尼特右旗| 宕昌县| 文安县| 河北省| 泰来县| 浙江省| 新河县| 沙田区| 大化| 田林县| 益阳市| 遂昌县| 依安县| 吉木乃县| 故城县| 建始县| 东宁县| 尚义县|