SpringData JPA는 임베디드 객체 속성으로 찾기


101

해당 엔터티에 포함 된 개체의 속성이있는 엔터티를 찾을 수 있도록하는 SpringData JPA 저장소 인터페이스 메서드 서명을 작성하고 싶습니다. 이것이 가능한지 아는 사람이 있습니까? 그렇다면 어떻게해야합니까?

내 코드는 다음과 같습니다.

@Entity
@Table(name = "BOOK_UPDATE_QUEUE", indexes = { uniqueConstraints = @UniqueConstraint(columnNames = {
        "bookId", "region" }, name = "UK01_BOOK_UPDATE_QUEUE"))
public class QueuedBook implements Serializable {

    @Embedded
    @NotNull
    private BookId bookId;

    ...

}

@Embeddable
public class BookId implements Serializable {

    @NotNull
    @Size(min=1, max=40)
    private String bookId;

    @NotNull
    @Enumerated(EnumType.STRING)
    private Region region;

    ...

}

public interface QueuedBookRepo extends JpaRepository<QueuedBook, Long> {

    //I'd like to write a method like this, but can't figure out how to search by region,
    //when region is actually a part of the embedded BookId
    Page<QueuedBook> findByRegion(Region region, Pageable pageable);

}

SpringData를 사용하여 이에 대한 쿼리를 작성할 수 있습니까?


4
하지 않습니다 findByBookIdRegion(Region region, Pageable pageable)트릭을 할?
Oliver Drotbohm 2014 년

2
네, 그렇습니다. 나는 그것에 대한 문서를 어디서도 찾을 수 없었습니다. 내가 보지 못한 곳에 숨겨져 있거나 암시되어 있습니까?
CorayThan

그것을 대답으로 바꾸고 참조 문서의 관련 섹션에 대한 링크를 추가했습니다.
Oliver Drotbohm 2014-06-27

답변:


145

이 메서드 이름은 트릭을 수행해야합니다.

Page<QueuedBook> findByBookIdRegion(Region region, Pageable pageable);

참조 문서의 쿼리 파생 에 대한 섹션에서 이에 대한 자세한 정보를 제공합니다 .


11
Embeddable 목록이 있으면 어떻게하나요? 또는 요소 수집?
user962206

3 preperty를 가진 findBy 쿼리를 원한다면 구문은 무엇입니까? findByPro1AndPro2AndPro3와 비슷합니까?
surendrapanday jul.

이러한 쿼리가 항상 내부 조인을 생성합니까? 내가하고 One findByIdAndTwoId(Long oneId, Long twoId);있고 다음과 같은 형식의 쿼리가 나타납니다.select ...... from one one_ left outer join two two_ on one_.two_id = two_.id where one_id = ? and two_.id = ?
TroJaN


9

BookId를 결합 된 기본 키로 사용하는 경우 인터페이스를 다음에서 변경해야합니다.

public interface QueuedBookRepo extends JpaRepository<QueuedBook, Long> {

에:

public interface QueuedBookRepo extends JpaRepository<QueuedBook, BookId> {

그리고 다음과 같이 QueuedBook 클래스에서 @Embedded 주석을 @EmbeddedId로 변경하십시오.

public class QueuedBook implements Serializable {

@EmbeddedId
@NotNull
private BookId bookId;

...

1

나에 따르면 Spring은 모든 경우를 쉽게 처리하지 않습니다. 귀하의 경우 다음이 트릭을 수행해야합니다.

Page<QueuedBook> findByBookIdRegion(Region region, Pageable pageable);  

또는

Page<QueuedBook> findByBookId_Region(Region region, Pageable pageable);

그러나 @Embeddable클래스에 있는 필드의 명명 규칙에 따라 달라집니다.

예를 들어 다음 필드는 위에서 언급 한 스타일에서 작동하지 않을 수 있습니다.

private String cRcdDel;

나는 두 경우 모두 (다음과 같이) 시도했지만 작동하지 않았습니다 (Spring이 이러한 유형의 명명 규칙을 처리하지 않는 것 같습니다 (즉, 많은 Caps, 특히 처음-두 번째 문자에서 (이것은 확실하지 않은 경우) 그래도 유일한 경우)

Page<QueuedBook> findByBookIdCRcdDel(String cRcdDel, Pageable pageable); 

또는

Page<QueuedBook> findByBookIdCRcdDel(String cRcdDel, Pageable pageable);

열 이름을 다음으로 변경했을 때

private String rcdDel;

내 다음 솔루션은 문제없이 잘 작동합니다.

Page<QueuedBook> findByBookIdRcdDel(String rcdDel, Pageable pageable); 

또는

Page<QueuedBook> findByBookIdRcdDel(String rcdDel, Pageable pageable);
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.