码迷,mamicode.com
首页 > 数据库 > 详细

Mybatis里SQL语句的分页

时间:2017-08-28 00:46:11      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:get   --   lazy   接口   mybatis   select   delete   com   list   

SQL语句中的分页。

首先在接口中定义,定义的时候是需要通过@Param注解来表示向mybatis里传入参数:

 

public interface GoodsInfoMapper extends IDaoHotel<GoodsInfo> {
      //定义一个方法,这个方法来表示分页的
    List<GoodsInfo> getlistbypage(@Param("startindex")Integer startindex,
                                  @Param("endindex")Integer endindex,
                                  @Param("goodsInfo")GoodsInfo goodsInfo);
}

 

紧接着在实体XML配置文件里写:

 

<!-- 带查询条件和分页的查询方法 -->
<select id="getlistbypage"  resultMap="goodsInfoLazyResultMap">
    select t.*
    from (select rownum as rnum, g.*
          from goodsinfo g
          where g.ifdelete=‘N‘
     <if test="goodsInfo.goodstypeid!=null and goodsInfo.goodstypeid >0">
        and g.goodstypeid=#{goodsInfo.goodstypeid}
    </if>
    <if test="goodsInfo.commdityid!=null and goodsInfo.commdityid!=‘‘">
        and g.commdityid=#{goodsInfo.commdityid}
    </if>
    <if test="goodsInfo.commdityname!=null and goodsInfo.commdityname!=‘‘">
        and g.commdityname=#{goodsInfo.commdityname}
    </if> 
    )t
    <where>
        <if test="startindex!=null and startindex>0">
        <![CDATA[
           and t.rnum >=#{startindex}
        ]]>
        </if>
        <if test="endindex!=null and endindex>0">
          <![CDATA[
           and t.rnum <=#{endindex}
        ]]>
        </if>
    </where>
</select>

 

Mybatis里SQL语句的分页

标签:get   --   lazy   接口   mybatis   select   delete   com   list   

原文地址:http://www.cnblogs.com/ljljava/p/7440739.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!