最新国产好看的视频,伊人天堂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à)值,需要的朋友參考下吧

廢話不多說(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)論

电白县| 兖州市| 青阳县| 门头沟区| 内乡县| 临邑县| 张家川| 木兰县| 将乐县| 华安县| 嘉善县| 无棣县| 廊坊市| 濮阳市| 崇州市| 弋阳县| 五华县| 克山县| 辛集市| 邳州市| 奉化市| 连山| 邢台市| 镶黄旗| 舒兰市| 遂平县| 莱阳市| 乐东| 常宁市| 潮安县| 旅游| 当阳市| 云林县| 边坝县| 洛阳市| 吉水县| 荥经县| 西青区| 舒兰市| 安阳县| 开江县|