最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

springmvc+mybatis做分页的实例代码

来源:懂视网 责编:小采 时间:2020-11-27 15:29:23
文档

springmvc+mybatis做分页的实例代码

springmvc+mybatis做分页的实例代码:springmvc+mybatis 做分页sql 语句,代码如下:<xml version="1.0" encoding="UTF-8" > <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" &
推荐度:
导读springmvc+mybatis做分页的实例代码:springmvc+mybatis 做分页sql 语句,代码如下:<xml version="1.0" encoding="UTF-8" > <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" &

springmvc+mybatis 做分页sql 语句,代码如下:

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"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做分页的实例代码

springmvc+mybatis做分页的实例代码:springmvc+mybatis 做分页sql 语句,代码如下:<xml version="1.0" encoding="UTF-8" > <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" &
推荐度:
标签: 代码 实例 分页
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top