您好,登錄后才能下訂單哦!
建一個config類
@Configuration public class MybatisPlusConfig { @Bean public PaginationInterceptor paginationInterceptor(){ return new PaginationInterceptor(); } }
編寫controller
post /article/search/{page}/{size}
@PostMapping("search/{page}/{size}") public Result findByPage(@PathVariable Integer page, @PathVariable Integer size, @RequestBody Map<String,Object> map){ //根據條件分頁查詢 Page<Article> pageDate = articleService.findByPage(map,page,size); //封裝分頁返回對象 PageResult<Article> pageResult =new PageResult<>( pageDate.getTotal(),pageDate.getRecords() ); return new Result(true,StatusCode.OK,"查詢分頁成功",pageResult); }
編寫service
public Page<Article> findByPage(Map<String, Object> map, Integer page, Integer size) { //設置查詢條件 EntityWrapper<Article> wrapper =new EntityWrapper<>(); Set<String> keySet = map.keySet(); for (String key : keySet) { // if (map.get(key) !=null){ // wrapper.eq(key,map.get(key)); // } wrapper.eq(map.get(key) !=null,key,map.get(key)); } //設置分頁參數 Page<Article> pageData =new Page<>(page,size); //第一個是分頁參數,第二個是查詢條件 List<Article> list = articleDao.selectPage(pageData, wrapper); pageData.setRecords(list); return pageData; }
整合完成!!!
到此這篇關于springboot整合mybatis-plus 實現分頁查詢功能的文章就介紹到這了,更多相關mybatis-plus 分頁查詢內容請搜索億速云以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持億速云!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。