最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

springmvc+mybatis 做分頁(yè)sql 語(yǔ)句實(shí)例代碼

 更新時(shí)間:2017年07月09日 09:11:42   作者:JesseCary  
本文通過(guò)一段實(shí)例代碼給大家介紹了springmvc+mybatis 做分頁(yè)sql 語(yǔ)句的方法,代碼簡(jiǎn)單易懂,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友參考下吧

廢話(huà)不多說(shuō)了,直接給大家貼代碼了,具體代碼如下所示:

<?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屬性來(lái)映射主鍵字段 -->
 <id property="id" column="id" jdbcType="INTEGER"/>
 <!-- 用result屬性來(lái)映射非主鍵字段 -->
 <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>
 <!--分頁(yè)返回類(lèi)型list 可以使用map User對(duì)應(yīng)的是resultMap size每頁(yè)的大小-->
 <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>
 <!--獲取總記錄數(shù) -->
 <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 做分頁(yè)sql 語(yǔ)句實(shí)例代碼,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)歡迎給我留言,小編會(huì)及時(shí)回復(fù)大家的!

相關(guān)文章

最新評(píng)論

泾阳县| 应城市| 达日县| 吴忠市| 丘北县| 开鲁县| 紫金县| 临西县| 江阴市| 晴隆县| 定边县| 开原市| 虎林市| 天长市| 安丘市| 扶沟县| 汕尾市| 万山特区| 浑源县| 扶余县| 康平县| 正镶白旗| 界首市| 囊谦县| 丹巴县| 孝昌县| 祁门县| 沧源| 靖西县| 监利县| 迁安市| 丹棱县| 南平市| 博客| 漳州市| 汤阴县| 闵行区| 顺平县| 广安市| 垣曲县| 澳门|