您好,登錄后才能下訂單哦!
小編給大家分享一下Java中如何實現(xiàn)jpa外連接查詢join,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
1、IndexTagController.java
@GetMapping("/tags/{id}") public String types(@PageableDefault(size = 3,sort = {"updateTime"},direction = Sort.Direction.DESC)Pageable pageable, @PathVariable long id, Model model, HttpSession session){ //找到所有的標(biāo)簽,并且按照標(biāo)簽新聞量排序 List<Tag> tags = tagService.listTagTop(50); if(id == -1){ //得到最大數(shù)據(jù)量的分類 id = tags.get(0).getId(); } model.addAttribute("tags",tags); model.addAttribute("page",newsService.listNews(id,pageable)); model.addAttribute("activeId",id); session.setAttribute("query",""); return "tags"; }
newService.listNews(id,pgeable)中id為標(biāo)簽的id,這個方法要做的就是查詢出標(biāo)簽中包含id為參數(shù)id的所有新聞。
2、業(yè)務(wù)層代碼
NewService.java是一個接口,其中存在以下方法
//根據(jù)標(biāo)簽Id查找符合條件的新聞 Page<News> listNews(long id,Pageable pageable);
NewServiceImpl.java為實現(xiàn)NewService接口的類,實現(xiàn)listNews方法
@Override public Page<News> listNews(long id, Pageable pageable) { return newsRepository.findAll(new Specification() { @Override public Predicate toPredicate(Root root, CriteriaQuery cq, CriteriaBuilder cb) { //外連接查詢 Join Join join =root.join("tags"); return cb.equal(join.get("id"),id); } },pageable); }
NewsRepository.java 繼承了JpaSpecificationExecutor
public interface NewsRepository extends JpaRepository<News,Long>, JpaSpecificationExecutor { @Query("select n from News n where n.recommend = true ") List<News> findTop(Pageable pageable); @Query("select n from News n where n.title like ?1 or n.content like ?1") Page<News> findByQuery(String query,Pageable pageable); @Query("select function('date_format',n.updateTime,'%Y') as year1 from News n group by year1 order by year1 desc ") List<String> findGroupYear(); @Query("select n from News n where function('date_format',n.updateTime,'%Y') = ?1 ") List<News> findByYear(String year); }
看完了這篇文章,相信你對“Java中如何實現(xiàn)jpa外連接查詢join”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(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)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。