您好,登錄后才能下訂單哦!
本篇內容主要講解“spingboot實現分頁查詢”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“spingboot實現分頁查詢”吧!
1 @Configuration 注解意思?
答: 用于定義配置類,支出該類是Bean配置的信息源,相當于xml文件
2. @Bean
答: 相當于xml中的 <bean></bean> 元素,放在方法上面,而不是類,意思是產生一個bean,交給Spring管理
3. @PathVariable
答:路徑變量
4. springBoot中分頁查詢的實現
/** * 頁面查詢方法 * @param page 頁碼,從1開始記數 * @param size 每頁記錄數 * @param queryPageRequest 查詢條件 * @return */ public QueryResponseResult findList(int page, int size, QueryPageRequest queryPageRequest){ if(queryPageRequest == null){ queryPageRequest = new QueryPageRequest(); } //自定義條件查詢 //定義條件匹配器 ExampleMatcher exampleMatcher = ExampleMatcher.matching() .withMatcher("pageAliase", ExampleMatcher.GenericPropertyMatchers.contains()); //條件值對象 CmsPage cmsPage = new CmsPage(); //設置條件值(站點id) if(StringUtils.isNotEmpty(queryPageRequest.getSiteId())){ cmsPage.setSiteId(queryPageRequest.getSiteId()); } //設置模板id作為查詢條件 if(StringUtils.isNotEmpty(queryPageRequest.getTemplateId())){ cmsPage.setTemplateId(queryPageRequest.getTemplateId()); } //設置頁面別名作為查詢條件 if(StringUtils.isNotEmpty(queryPageRequest.getPageAliase())){ cmsPage.setPageAliase(queryPageRequest.getPageAliase()); } //定義條件對象Example Example<CmsPage> example = Example.of(cmsPage,exampleMatcher); //分頁參數 if(page <=0){ page = 1; } page = page -1; if(size<=0){ size = 10; } Pageable pageable = PageRequest.of(page,size); Page<CmsPage> all = cmsPageRepository.findAll(example,pageable);//實現自定義條件查詢并且分頁查詢 QueryResult queryResult = new QueryResult(); queryResult.setList(all.getContent());//數據列表 queryResult.setTotal(all.getTotalElements());//數據總記錄數 QueryResponseResult queryResponseResult = new QueryResponseResult(CommonCode.SUCCESS,queryResult); return queryResponseResult; }
5. 問題:什么時候需要用Example?
答: 當一次查詢需要 設置查詢條件較多時,例如在上面
到此,相信大家對“spingboot實現分頁查詢”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。