해당 엔터티에 포함 된 개체의 속성이있는 엔터티를 찾을 수 있도록하는 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를 사용하여 이에 대한 쿼리를 작성할 수 있습니까?
findByBookIdRegion(Region region, Pageable pageable)
트릭을 할?