首頁 > 軟體

使用PageHelper外掛實現Service層分頁

2022-04-22 10:00:56

本文範例為大家分享了使用PageHelper外掛實現Service層分頁的具體程式碼,供大家參考,具體內容如下

使用場景:

平時分頁我們可以直接使用mybatis-plus中內建的IPage進行分頁,一般是在mapper中寫好介面,在執行sql時就將其進行分頁操作,但是有些複雜的查詢或者是需要拼接返回格式的資料就難以操作了,所以我們使用PageHelper外掛來實現Service分頁功能。

1.在pom.xml檔案中匯入PageHelper外掛依賴

<!--pagehelper分頁外掛-->
<dependency>
    <groupId>com.github.pagehelper</groupId>
    <artifactId>pagehelper</artifactId>
    <version>4.1.6</version>
</dependency>

2.編寫PageHelper設定類

package com.cdtye.itps.jjxt.config;
import java.util.Properties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import com.github.pagehelper.PageHelper;

/**
 * @Author Zhongks
 * @Description //TODO 分頁設定物件
 * @Date 14:47 2021/4/23
 * @Param
 * @return
 **/
@Configuration
public class PageHelperConfiguration {
    /**
     * @Author Zhongks
     * @Description //TODO 分頁物件實列化
     * @Date 15:49 2021/4/23
     * @Param []
     * @return com.github.pagehelper.PageHelper
     **/
    @Bean
    public PageHelper pageHelper() {
        PageHelper pageHelper = new PageHelper();
        Properties p = new Properties();
        p.setProperty("offsetAsPageNum", "true");
        p.setProperty("rowBoundsWithCount", "true");
        p.setProperty("reasonable", "true");
        p.setProperty("dialect", "Oracle");
        pageHelper.setProperties(p);
        return pageHelper;
    }
}

3.在Service層進行分頁操作:

/**
     * @Author Zhongks
     * @Description //TODO 列表頁面顯示
     * @Date 18:42 2021/4/22
     * @Param []
     * @return java.util.List<java.util.Map<java.lang.String,java.lang.Object>>
     **/
    public PageInfo<Map<String, Object>> getList(BureauNoticeVo vo){
        if(vo.getPage()!=null&&vo.getSize()!=null){
            //設定頁碼數以及一頁顯示數量
            PageHelper.startPage(vo.getPage(),vo.getSize());
        }
        //自己釋出的或者下發單位中含有當前登入人單位編碼的才能看
        List<Map<String, Object>> bureauNoticeList = bureauNoticeMapper.getList(vo,AuthHelper.loginUser().getUnitDeptCode());
        bureauNoticeList.forEach(map->{
            //得到下發單位資訊集合
            List<String> deptNameList = bureauNoticeAcceptService.getBureauNoticeAcceptAndDeptByNoticeId((String) map.get("id"));
            map.put("deptNameList",deptNameList);
            //得到附件資訊集合
            map.put("fileList",this.getFileList((String) map.get("id")));
        });
        //將需要進行分頁的list傳入Pagehelper實現分頁
        PageInfo<Map<String, Object>> pageInfo = new PageInfo(bureauNoticeList);
        return pageInfo;
    }

4.查詢類Vo:

@ApiModel("")
@Getter
@Setter
public class BureauNoticeVo extends BaseVo {

    @ApiModelProperty(value = "開始時間")
    private String startDate;

    @ApiModelProperty(value = "開始時間")
    private String endDate;

    @ApiModelProperty(value = "描述")
    private String noticeDescription;

    @ApiModelProperty(value = "頁碼")
    private Integer page;

    @ApiModelProperty(value = "頁顯示數")
    private Integer size;

}

5.介面返回資料:

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com