springmvc+my batis 는 페이지 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+my batis 가 페이지 별 sql 구문 인 스 턴 스 코드 를 만 드 는 것 입 니 다.여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 저 에 게 메 시 지 를 남 겨 주세요.소 편 은 제때에 답 해 드 리 겠 습 니 다!

좋은 웹페이지 즐겨찾기