溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

MyBatis Plus 實(shí)現(xiàn)多表分頁查詢功能的示例代碼

發(fā)布時間:2020-09-09 09:37:33 來源:腳本之家 閱讀:640 作者:騎驢的小牧童 欄目:開發(fā)技術(shù)

在Mybatis Plus 中,雖然IService 接口幫我們定義了很多常用的方法,但這些都是 T 對象有用,如果涉及到 多表的查詢,還是需要自定義Vo 對象和自己編寫sql 語句,Mybatis Plus提供了一個Page 對象,查詢是需要設(shè)置其中的 size 字段 和 current 字段的值

一、分頁配置

可以直接使用selectPage這樣的分頁,但返回的數(shù)據(jù)確實(shí)是分頁后的數(shù)據(jù),但在控制臺打印的SQL語句其實(shí)并沒有真正的物理分頁,而是通過緩存來獲得全部數(shù)據(jù)中再進(jìn)行的分頁,這樣對于大數(shù)據(jù)量操作時是不可取的,那么接下來就敘述一下,真正實(shí)現(xiàn)物理分頁的方法。
官方在分頁插件上如是描述:自定義查詢語句分頁(自己寫sql/mapper),也就是針對自己在Mapper中寫的方法,但經(jīng)過測試,如果不配置分頁插件,其默認(rèn)采用的分頁為RowBounds的分頁即邏輯分頁,也就是先把數(shù)據(jù)記錄全部查詢出來,然在再根據(jù)offset和limit截斷記錄返回(數(shù)據(jù)量大的時候會造成內(nèi)存溢出),故而不可取,而通過分頁插件的配置即可達(dá)到物理分頁效果。

新建一個MybatisPlusConfig配置類文件,代碼如下所示:

import com.baomidou.mybatisplus.plugins.PaginationInterceptor;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
 
@Configuration
@EnableTransactionManagement(proxyTargetClass = true)
public class MybatisPlusConfig {
 
  /**
   * mybatis-plus分頁插件<br>
   */
  @Bean
  public PaginationInterceptor paginationInterceptor() {
    PaginationInterceptor paginationInterceptor = new PaginationInterceptor();
    return paginationInterceptor;
  }
}

二、使用分頁進(jìn)行單表的查詢

對于單表的分頁查詢,ServiceImpl 類已經(jīng)為我們提供了對應(yīng)的方法 selectPage(),并將結(jié)果封裝到Page 對象中:

MyBatis Plus 實(shí)現(xiàn)多表分頁查詢功能的示例代碼

在項(xiàng)目開發(fā)當(dāng)中,都會將分頁的一些參數(shù)封裝成一個類 PageReq(不要在意這個Req 為什么不是全大寫)->import java.io.Serializable;

public class PageReq implements Serializable {

  /**
   * 每頁顯示大小
   */
  private long size;

  /**
   * 當(dāng)前頁碼
   */
  private long current;

  /**
   * 最大頁數(shù)
   */
  private long maxCurrent;

  /**
   * 數(shù)據(jù)總條數(shù)
   */
  private long total;

  public long getSize() {
    return size;
  }

  public void setSize(long size) {
    this.size = size;
  }

  public long getCurrent() {
    return current;
  }

  public void setCurrent(long current) {
    this.current = current;
  }

  public long getMaxCurrent() {
    return maxCurrent;
  }

  public void setMaxCurrent(long maxCurrent) {
    this.maxCurrent = maxCurrent;
  }

  public long getTotal() {
    return total;
  }

  public void setTotal(long total) {
    if(size != 0){
      if(total % size != 0){
        maxCurrent = total / size + 1;
      }else {
        maxCurrent = total / size;
      }
    }
  }

  public PageReq() {

  }

  public PageReq(long size, long current, long total) {
    this.size = size;
    this.current = current;
    this.total = total;
    setTotal(total);
  }
}

功能編寫:

MyBatis Plus 實(shí)現(xiàn)多表分頁查詢功能的示例代碼
MyBatis Plus 實(shí)現(xiàn)多表分頁查詢功能的示例代碼

執(zhí)行完之后,會將查詢的接口封裝到我們 Page的 對象中:

MyBatis Plus 實(shí)現(xiàn)多表分頁查詢功能的示例代碼

三、多表關(guān)聯(lián)分頁查詢

對于多表關(guān)聯(lián)的查詢時,還是需要編寫 VO 類和 手動的在Mapper.xml 中編寫sql,雖然是可以不用創(chuàng)建VO,用Map 的方式接受返回的結(jié)果,但這樣只會更麻煩,甚至VO 是很有可能在其他地方使用的
先準(zhǔn)備個VO類:

MyBatis Plus 實(shí)現(xiàn)多表分頁查詢功能的示例代碼

編寫Mapper接口,添加一個分頁查詢的方法
package com.eiot.e_view.mapper;

import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.eiot.e_view.model.req.RoomPageReq;
import com.eiot.e_view.model.vo.RoomVO;
import org.apache.ibatis.annotations.Param;

import java.util.List;

public interface RoomMapper extends BaseMapper<Room> {

  List<RoomVO> getRoomPageList(Page page, @Param("roomPageReq")RoomPageReq roomPageReq);
}

編寫sql,和我們使用Mybatis 沒有區(qū)別:

MyBatis Plus 實(shí)現(xiàn)多表分頁查詢功能的示例代碼
MyBatis Plus 實(shí)現(xiàn)多表分頁查詢功能的示例代碼

編寫Server :

MyBatis Plus 實(shí)現(xiàn)多表分頁查詢功能的示例代碼

執(zhí)行結(jié)果:

MyBatis Plus 實(shí)現(xiàn)多表分頁查詢功能的示例代碼

總結(jié)

到此這篇關(guān)于MyBatis Plus 實(shí)現(xiàn)多表分頁查詢功能的示例代碼的文章就介紹到這了,更多相關(guān)MyBatis Plus 多表分頁查詢內(nèi)容請搜索億速云以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持億速云!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI