페이징을 위한 Springmvc+mybatis 예제 코드

零下一度
풀어 주다: 2017-07-23 18:11:30
원래의
1638명이 탐색했습니다.

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 !=&#39;&#39; ">
 t1.userName like  &#39;%&#39;||#{userName,jdbcType=VARCHAR}||&#39;%&#39;
 </if>
 </where>
 ) t2
<where>
<if test ="start !=null and start !=&#39;&#39;">
<![CDATA[and t2.rn >=#{start}]]>
</if>
<if test ="size !=null and size !=&#39;&#39;">
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 !=&#39;&#39; ">
  userName like &#39;%&#39;||#{userName,jdbcType=VARCHAR}||&#39;%&#39;
 </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 예제 코드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿