中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Mybatis-plus的分頁查詢操作怎么使用

發布時間:2022-06-16 10:38:49 來源:億速云 閱讀:955 作者:iii 欄目:開發技術

這篇“Mybatis-plus的分頁查詢操作怎么使用”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Mybatis-plus的分頁查詢操作怎么使用”文章吧。

完整配置類代碼

下邊就是完整的配置類,至于為什么比官網上的少一點,因為那個可以說會報錯,而且也不需要使用到它,以下就是完整配置類:

package com.hxstrive.mybatis_plus;
 
import com.baomidou.mybatisplus.annotation.DbType;
import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor;
import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
 
@Configuration
public class MybatisPlusConfig {
 
    /**
     * 分頁插件。如果你不配置,分頁插件將不生效
     */
    @Bean
    public MybatisPlusInterceptor paginationInterceptor() {
        MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
        // 指定數據庫方言為 MYSQL
        interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL));
        return interceptor;
    }
 
}

注意:如果你沒有配置分頁插件,則不會進行分頁。所以這個一定要配置。

示例代碼

1.使用 QueryWrapper 和 Page 作為參數進行分頁,例如:

package com.hxstrive.mybatis_plus.select;

import com.alibaba.fastjson.JSONObject;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.hxstrive.mybatis_plus.mapper.SimpleMapper;
import com.hxstrive.mybatis_plus.model.UserBean;
import org.junit.jupiter.api.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

@RunWith(SpringRunner.class)
@SpringBootTest
class Select6Test {

   @Autowired
   private SimpleMapper simpleMapper;

   @Test
   void contextLoads() {
       QueryWrapper<UserBean> wrapper = new QueryWrapper<>();
       wrapper.isNotNull("user_id");

       // 創建分頁對象(1表示第一頁;4表示每頁大小為4)
       Page<UserBean> page = new Page<>(1, 4);
       Page<UserBean> result = simpleMapper.selectPage(page, wrapper);
       System.out.println("page == result: " + (page == result));
       System.out.println("size: " + result.getSize());
       System.out.println("total: " + result.getTotal());
       for(UserBean userBean : result.getRecords()) {
           System.out.println(userBean);
       }
   }

}

運行上面代碼,你會發現 page 和selectPage 返回的 result1 相等,說明兩者是同一個對象。因此,可以忽略掉 selectPage 方法的返回結果,如下:

Page<UserBean> page = new Page<>(1, 4);
simpleMapper.selectPage(page, wrapper);

2.另外一個分頁方法,selectMapsPage 和上面的使用方法一樣,僅僅是返回類型不一樣。代碼如下:

package com.hxstrive.mybatis_plus.select;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.hxstrive.mybatis_plus.mapper.SimpleMapper;
import org.junit.jupiter.api.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import java.util.Map;
 
@RunWith(SpringRunner.class)
@SpringBootTest
class Select7Test {
 
    @Autowired
    private SimpleMapper simpleMapper;
 
    @Test
    void contextLoads() {
        // 返回的結果類型為 Map<String,Object>
        Page<Map<String,Object>> page = new Page<>(1, 4);
        simpleMapper.selectMapsPage(page, null);
        System.out.println("size: " + page.getSize());
        System.out.println("total: " + page.getTotal());
        System.out.println("pages: " + page.getPages());
        for(Map<String,Object> map : page.getRecords()) {
            System.out.println(map);
        }
    }
 
}

注意:這里我們平常會使用以下代碼獲取page里邊的存放的代碼。

page.getRecords():這是用來獲取我們分頁查出來的數據

以上就是關于“Mybatis-plus的分頁查詢操作怎么使用”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

大港区| 鄂温| 莱阳市| 安国市| 顺义区| 临颍县| 获嘉县| 饶河县| 微博| 威远县| 孟州市| 石河子市| 平江县| 土默特右旗| 文安县| 济南市| 大厂| 定远县| 吉首市| 侯马市| 大冶市| 重庆市| 博客| 安国市| 赤城县| 高邑县| 闻喜县| 沛县| 扎鲁特旗| 安阳市| 晋中市| 布尔津县| 武胜县| 芜湖县| 安吉县| 海盐县| 德令哈市| 开远市| 江西省| 达州市| 大同市|