해당 엔터티에 포함 된 개체의 속성이있는 엔터티를 찾을 수 있도록하는 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를 사용하여 이에 대한 쿼리를 작성할 수 있습니까?
답변
이 메서드 이름은 트릭을 수행해야합니다.
Page<QueuedBook> findByBookIdRegion(Region region, Pageable pageable);
참조 문서의 쿼리 파생 에 대한 섹션에서 이에 대한 자세한 정보를 제공합니다 .
답변
위의-findByBookIdRegion ()은 나를 위해 작동하지 않았습니다. 다음은 String Data JPA의 최신 릴리스에서 작동합니다.
Page<QueuedBook> findByBookId_Region(Region region, Pageable pageable);
답변
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;
...
답변
나에 따르면 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);