Spring Data JPA 동적 조건 조회 의 쓰기

저 희 는 SpringData JPA 프레임 워 크 를 사용 할 때 조건 조 회 를 합 니 다.고정된 조건 의 조회 라면 프레임 워 크 규칙 에 맞 는 사용자 정의 방법 과@Query 주 해 를 사용 할 수 있 습 니 다.
검색 조건 이 동적 이 라면 프레임 워 크 도 검색 인 터 페 이 스 를 제공 합 니 다.

JpaSpecificationExecutor
 다른 인터페이스 사용 방식 과 마찬가지 로 Dao 인터페이스 에서 만 계승 하면 됩 니 다(홈 페이지 코드).

public interface CustomerRepository extends CrudRepository<Customer, Long>, JpaSpecificationExecutor {
 …
}
Jpa SpecificationExecutor 는 많은 조건 조회 방법 을 제공 합 니 다.

public interface JpaSpecificationExecutor<T> {
 T findOne(Specification<T> var1);

 List<T> findAll(Specification<T> var1);

 Page<T> findAll(Specification<T> var1, Pageable var2);

 List<T> findAll(Specification<T> var1, Sort var2);

 long count(Specification<T> var1);
}
예 를 들 어 방법:

List<T> findAll(Specification<T> var1);
조건 에 맞 는 모든 데 이 터 를 찾 을 수 있 습 니 다.프레임 워 크 가 전단 페이지 기술 을 사용한다 면 이 방법 은 매우 간편 합 니 다.
그렇다면 이 방법 은 어떻게 사용 해 야 할 까?우 리 는 그것 이 필요 로 하 는 매개 변수 가 하나 라 는 것 을 보 았 다.

org.springframework.data.jpa.domain.Specification
대상그럼 이 상 대 를 만 들 고 먼저 보 자.

Specification specification = new Specification() {
   @Override
   public Predicate toPredicate(Root root, CriteriaQuery criteriaQuery, CriteriaBuilder criteriaBuilder) {
    return null;
   }
  }
IDE 는 다시 쓸 방법 인 toPredicate 를 자동 으로 생 성 합 니 다.
루트 매개 변 수 는 우리 가 실체 에 대응 하 는 정보 입 니 다.criteria Builder 는 조회 정 보 를 만 드 는 데 도움 을 줄 수 있 습 니 다.

/**
 * A root type in the from clause.
 * Query roots always reference entities.
 *
 * @param <X> the entity type referenced by the root
 * @since Java Persistence 2.0
 */
public interface Root<X> extends From<X, X> {...}

/**
 * Used to construct criteria queries, compound selections,
 * expressions, predicates, orderings.
 *
 * <p> Note that <code>Predicate</code> is used instead of <code>Expression&#060;Boolean&#062;</code>
 * in this API in order to work around the fact that Java
 * generics are not compatible with varags.
 *
 * @since Java Persistence 2.0
 */
public interface CriteriaBuilder {...}
Criteria Builder 대상 에는 많은 조건 방법 이 있 습 니 다.예 를 들 어 조건 을 제정 하 는 것 입 니 다.특정한 데이터 의 생 성 날 짜 는 오늘 보다 작 습 니 다.

criteriaBuilder.lessThan(root.get("createDate"), today)
이 방법 이 되 돌아 오 는 대상 유형 은 Predicate 입 니 다.바로 toPredicate 가 되 돌려 줘 야 할 값 입 니 다.
여러 가지 조건 이 있 으 면 우 리 는 Predicate 집합 을 만 들 고 마지막 으로 Criteria Builder 의 and 와 or 방법 으로 조합 하여 마지막 Predicate 대상 을 얻 을 수 있 습 니 다.

/**
  * Create a conjunction of the given restriction predicates.
  * A conjunction of zero predicates is true.
  *
  * @param restrictions zero or more restriction predicates
  *
  * @return and predicate
  */
 Predicate and(Predicate... restrictions);


/**
  * Create a disjunction of the given restriction predicates.
  * A disjunction of zero predicates is false.
  *
  * @param restrictions zero or more restriction predicates
  *
  * @return or predicate
  */
 Predicate or(Predicate... restrictions);

예시:

public List<WeChatGzUserInfoEntity> findByCondition(Date minDate, Date maxDate, String nickname){
  List<WeChatGzUserInfoEntity> resultList = null;
  Specification querySpecifi = new Specification<WeChatGzUserInfoEntity>() {
   @Override
   public Predicate toPredicate(Root<WeChatGzUserInfoEntity> root, CriteriaQuery<?> criteriaQuery, CriteriaBuilder criteriaBuilder) {

    List<Predicate> predicates = new ArrayList<>();
    if(null != minDate){
     predicates.add(criteriaBuilder.greaterThan(root.get("subscribeTime"), minDate));
    }
    if(null != maxDate){
     predicates.add(criteriaBuilder.lessThan(root.get("subscribeTime"), maxDate));
    }
    if(null != nickname){
     predicates.add(criteriaBuilder.like(root.get("nickname"), "%"+nickname+"%"));
    }
    return criteriaBuilder.and(predicates.toArray(new Predicate[predicates.size()]));
   }
  };
  resultList = this.weChatGzUserInfoRepository.findAll(querySpecifi);
  return resultList;
 }
and 가 함께 있 으 면 모든 조건 이 관계,or 또는 관계 입 니 다.
사실 Stack Overflow 에서 도 봤 어 요.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기