主页 > 知识库 > Oracle使用MyBatis中RowBounds实现分页查询功能

Oracle使用MyBatis中RowBounds实现分页查询功能

热门标签:呼叫中心市场需求 AI电销 服务外包 铁路电话系统 百度竞价排名 Linux服务器 地方门户网站 网站排名优化

Oracle中分页查询因为存在伪列rownum,sql语句写起来较为复杂,现在介绍一种通过使用MyBatis中的RowBounds进行分页查询,非常方便。

使用MyBatis中的RowBounds进行分页查询时,不需要在 sql 语句中写 offset,limit,mybatis 会自动拼接 分页sql ,添加 offset,limit,实现自动分页。

需要前台传递参数currentPage和pageSize两个参数,分别是当前页和每页数量,controller层把参数传递给service层即可,下面是service实现的代码:

package com.xyfer.service.impl;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.apache.ibatis.session.RowBounds;
import com.xyfer.dao.UserDao;
import com.xyfer.service.UserService;
public class UserServiceImpl implements UserService {
  private UserDao userDao;
  @Override
  public MapString, Object> queryUserList(String currentPage, String pageSize) {
    //查询数据总条数
    int total = userDao.queryCountUser();
    //返回结果集
    MapString,Object> resultMap = new HashMapString,Object>();
    resultMap.put("total", total);
    //总页数
    int totalpage = (total + Integer.parseInt(pageSize) - 1) / Integer.parseInt(pageSize);
    resultMap.put("totalpage", totalpage);
    //数据的起始行
    int offset = (Integer.parseInt(currentPage)-1)*Integer.parseInt(pageSize);
    RowBounds rowbounds = new RowBounds(offset, Integer.parseInt(pageSize));
    //用户数据集合
    ListMapString, Object>> userList = userDao.queryUserList(rowbounds);
    resultMap.put("userList", userList);
    return resultMap;
  }
}

dao层接口:

package com.xyfer.dao;
import java.util.List;
import java.util.Map;
import org.apache.ibatis.session.RowBounds;
public interface UserDao {
  public int queryCountUser();    //查询用户总数
  public ListMapString, Object>> queryUserList(RowBounds rowbounds);  //查询用户列表
}

对应的mapper.xml文件:

?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="com.xyfer.mapper.UserMapper">
  !-- 查询用户总数 -->
  select id="queryCountUser" resultType="java.lang.Integer">
    select count(1) from user
  /select>
  !-- 查询用户列表 -->
  select id="queryUserList" resultType="java.util.Map">
    select * from user
  /select>
/mapper>

通过postman调用接口,传入对应的参数,即可实现分页查询数据。

总结

以上所述是小编给大家介绍的Oracle使用MyBatis中RowBounds实现分页查询功能,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

您可能感兴趣的文章:
  • mybatis中查询结果为空时不同返回类型对应返回值问题
  • 结合mybatis-plus实现简单不需要写sql的多表查询
  • mybatis 实现 SQL 查询拦截修改详解
  • 详解MyBatis模糊查询LIKE的三种方式
  • MyBatis带参查询的方法详解

标签:兰州 铜川 衡水 崇左 仙桃 湖南 黄山 湘潭

巨人网络通讯声明:本文标题《Oracle使用MyBatis中RowBounds实现分页查询功能》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266