主頁 > 知識庫 > Oracle使用MyBatis中RowBounds實現(xiàn)分頁查詢功能

Oracle使用MyBatis中RowBounds實現(xiàn)分頁查詢功能

熱門標簽:汽車4s店百度地圖標注店 網(wǎng)貸外呼系統(tǒng)合法嗎 手機地圖標注門店 安陽企業(yè)電銷機器人供應商 鶴壁電話機器人價格 電銷套路機器人 杭州網(wǎng)絡外呼系統(tǒng)運營商 地圖標注坐標圖標 地圖標注效果的制作

Oracle中分頁查詢因為存在偽列rownum,sql語句寫起來較為復雜,現(xiàn)在介紹一種通過使用MyBatis中的RowBounds進行分頁查詢,非常方便。

使用MyBatis中的RowBounds進行分頁查詢時,不需要在 sql 語句中寫 offset,limit,mybatis 會自動拼接 分頁sql ,添加 offset,limit,實現(xiàn)自動分頁。

需要前臺傳遞參數(shù)currentPage和pageSize兩個參數(shù),分別是當前頁和每頁數(shù)量,controller層把參數(shù)傳遞給service層即可,下面是service實現(xiàn)的代碼:

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) {
    //查詢數(shù)據(jù)總條數(shù)
    int total = userDao.queryCountUser();
    //返回結果集
    MapString,Object> resultMap = new HashMapString,Object>();
    resultMap.put("total", total);
    //總頁數(shù)
    int totalpage = (total + Integer.parseInt(pageSize) - 1) / Integer.parseInt(pageSize);
    resultMap.put("totalpage", totalpage);
    //數(shù)據(jù)的起始行
    int offset = (Integer.parseInt(currentPage)-1)*Integer.parseInt(pageSize);
    RowBounds rowbounds = new RowBounds(offset, Integer.parseInt(pageSize));
    //用戶數(shù)據(jù)集合
    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();    //查詢用戶總數(shù)
  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">
  !-- 查詢用戶總數(shù) -->
  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調(diào)用接口,傳入對應的參數(shù),即可實現(xiàn)分頁查詢數(shù)據(jù)。

總結

以上所述是小編給大家介紹的Oracle使用MyBatis中RowBounds實現(xiàn)分頁查詢功能,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!
如果你覺得本文對你有幫助,歡迎轉(zhuǎn)載,煩請注明出處,謝謝!

您可能感興趣的文章:
  • mybatis中查詢結果為空時不同返回類型對應返回值問題
  • 結合mybatis-plus實現(xiàn)簡單不需要寫sql的多表查詢
  • mybatis 實現(xiàn) SQL 查詢攔截修改詳解
  • 詳解MyBatis模糊查詢LIKE的三種方式
  • MyBatis帶參查詢的方法詳解

標簽:河源 焦作 南陽 銀川 泰安 梧州 柳州 酒泉

巨人網(wǎng)絡通訊聲明:本文標題《Oracle使用MyBatis中RowBounds實現(xiàn)分頁查詢功能》,本文關鍵詞  Oracle,使用,MyBatis,中,RowBounds,;如發(fā)現(xiàn)本文內(nèi)容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《Oracle使用MyBatis中RowBounds實現(xiàn)分頁查詢功能》相關的同類信息!
  • 本頁收集關于Oracle使用MyBatis中RowBounds實現(xiàn)分頁查詢功能的相關信息資訊供網(wǎng)民參考!
  • 推薦文章