时间:2021-05-19
废话不多说了,直接给大家贴代码了,具体代码如下所示:
<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE mapperPUBLIC "-//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+mybatis 做分页sql 语句实例代码,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
mybatis中分页有3种方式来实现,通过sql语句(两种传参方式)来实现,通过mybatis的Rowbounds来实现。通过(自定义类型)传参来实现分页:映射
前言一直以来都是用springmvc+mybatis进行后端接口开发工作,最近闲来无事,根据现有功能需求,用springboot+mybatis部署一套简单的w
说明本项目采用maven结构,主要演示了springmvc+mybatis,controller获取数据后以json格式返回数据。项目结构包依赖与说明pom文件
Oracle中分页查询因为存在伪列rownum,sql语句写起来较为复杂,现在介绍一种通过使用MyBatis中的RowBounds进行分页查询,非常方便。使用M
下面这段是基本的分页代码:<%sql="select……………………省略了sql语句 Setrs=Server.Createobject("ADODB.RECO