真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

在spring中使用datajpa實現(xiàn)分頁查詢功能

在spring中使用 data jpa實現(xiàn)分頁查詢功能?針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

10年積累的網(wǎng)站設(shè)計制作、網(wǎng)站設(shè)計經(jīng)驗,可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識你,你也不認(rèn)識我。但先網(wǎng)站制作后付款的網(wǎng)站建設(shè)流程,更有登封免費網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。

最近項目上用就hibernate+spring data jpa,一開始感覺還不錯,但是隨著對業(yè)務(wù)的復(fù)雜,要求處理一些復(fù)雜的sql,就順便研究了下,把結(jié)果記錄下,以便日后查看。用到Specification,需要繼承JpaSpecificationExecutor接口。(下面代碼有的分頁從0開始作為第一頁,有的從1開始作為作為第一頁,我也忘記,請自己測試)

DAO層:

import java.util.List;  
import org.springframework.data.domain.Page; 
import org.springframework.data.domain.Pageable; 
import org.springframework.data.jpa.repository.JpaRepository; 
import org.springframework.data.jpa.repository.JpaSpecificationExecutor; 
import org.springframework.data.jpa.repository.Modifying; 
import org.springframework.data.jpa.repository.Query; 
import org.springframework.stereotype.Repository; 
 
 
@Repository 
public interface CameraInfoRepo extends JpaRepository, JpaSpecificationExecutor { 
   
  @Query("select c from CameraInfoPO c where c.deviceInfo.id = ?1") 
  public List findCamerasByDeviceId(String listDeviceInfoId); 
   
  //更新之后不清空緩存,在一個事務(wù)里查詢到舊數(shù)據(jù)(hibernate) 
  @Modifying 
  @Query(value = "update CameraInfoPO c set c.isEnabled = 1 where c.id = ?1") 
  public void updateEnabled(String cameraId); 
   
  //更新之后清空緩存,不保留舊對象(hibernate) 
  @Modifying(clearAutomatically = true) 
  @Query(value = "update CameraInfoPO c set c.isEnabled = 0 where c.id = ?1") 
  public void updateUnEnabled(String cameraId); 
   
  //帶條件的分頁查詢    
  public Page findByIsEnabled(Integer isEnabled, Pageable pageable); 
   
} 

DAO實現(xiàn)層

import java.util.ArrayList; 
import java.util.List; 
 
import javax.annotation.Resource; 
import javax.persistence.EntityManager; 
import javax.persistence.PersistenceContext; 
import javax.persistence.TypedQuery; 
import javax.persistence.criteria.CriteriaBuilder; 
import javax.persistence.criteria.CriteriaQuery; 
import javax.persistence.criteria.Predicate; 
import javax.persistence.criteria.Root; 
 
import org.springframework.data.domain.Page; 
import org.springframework.data.domain.PageImpl; 
import org.springframework.data.domain.Pageable; 
import org.springframework.data.jpa.domain.Specification; 
import org.springframework.stereotype.Repository; 
 
@Repository 
public class CameraInfoRepoImpl { 
   
  @PersistenceContext 
  private EntityManager em; 
   
  @Resource 
  private CameraInfoRepo cameraInfoRepo; 
   
  public Page findCameraInfoByPage(Pageable pageable, Integer isEnabled) { 
     
    //CriteriaBuilder,用來構(gòu)建CritiaQuery的構(gòu)建器對象 
    CriteriaBuilder criteriaBuilder = em.getCriteriaBuilder(); 
     
    //CriteriaQuery,它包含著查詢語句的條件各個部分,比如:select 、from、where、group by、order by等 
    CriteriaQuery criteriaQuery = criteriaBuilder.createQuery(CameraInfoPO.class); 
     
    //查詢根,用于獲取查詢實例的屬性,通過CriteriaQuery的from方法獲取 
    Root rootFrom = criteriaQuery.from(CameraInfoPO.class); 
     
    //查詢條件 
    List predicates = new ArrayList(); 
     
    if (null != isEnabled) { 
      Predicate predicate = criteriaBuilder.equal(rootFrom.get("isEnabled").as(Integer.class), isEnabled); 
      predicates.add(predicate); 
       
    } 
     
    //格式化參數(shù) 
    criteriaQuery.where(criteriaBuilder.and(predicates.toArray(new Predicate[predicates.size()]))); 
     
    //默認(rèn)按照id排序(從小到大) 
    criteriaQuery.orderBy(criteriaBuilder.asc(rootFrom.get("id"))); 
     
    //SQL查詢對象 
    TypedQuery createQuery = em.createQuery(criteriaQuery); 
     
    //分頁參數(shù) 
    Integer pageSize = pageable.getPageSize(); 
    Integer pageNo = pageable.getPageNumber(); 
     
    //計數(shù)查詢結(jié)果條數(shù) 
    TypedQuery createCountQuery = em.createQuery(criteriaQuery); 
     
    // 實際查詢返回分頁對象 
    int startIndex = pageSize * pageNo; 
    createQuery.setFirstResult(startIndex); 
    createQuery.setMaxResults(pageable.getPageSize()); 
    Page pageRst = 
      new PageImpl(createQuery.getResultList(), pageable, createCountQuery.getResultList().size()); 
    return pageRst; 
     
  } 
   
  //制造查詢條件結(jié)果(建議存放map) 
  private Specification getWhereClause(final Integer isEnabled) { 
    return new Specification() { 
      public Predicate toPredicate(Root r, CriteriaQuery<?> q, CriteriaBuilder cb) { 
        Predicate predicate = cb.conjunction(); 
        if (null != isEnabled) { 
           
          predicate = cb.equal(r.get("isEnabled").as(Integer.class), isEnabled); 
        } 
         
        return predicate; 
      } 
    }; 
  } 
   
  //單表根據(jù)查詢條件的分頁 
  public Page findCameraInfoByPageForJpa(Pageable pageable, Integer isEnabled) { 
     
    Specification spec = getWhereClause(isEnabled); 
     
    Page pageRst = cameraInfoRepo.findAll(spec, pageable); 
     
    return pageRst; 
     
  } 
   
} 

還有另外一種就更簡單了,如果只是根據(jù)表里面的一個或者幾個字段,可以直接寫jpa實現(xiàn),不用復(fù)雜

Pageable pageable = new PageRequest(1, 1); 
Page page = cameraInfoRepo.findByIsEnabled(1, pageable); 

關(guān)于在spring中使用 data jpa實現(xiàn)分頁查詢功能問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識。


網(wǎng)站標(biāo)題:在spring中使用datajpa實現(xiàn)分頁查詢功能
標(biāo)題來源:http://weahome.cn/article/jspchj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部