FK

    [Spring] Spring JPA FindByFK (외래키로 조회)

    스프링 프로젝트 진행 중 외래키를 사용해 DB 내의 정보를 찾아와야 할 경우가 생겼다. FindBy와 외래키를 동시에 사용해본 적이 없어 이에 대해 정리해보고자 한다. 먼저 엔티티 클래스는 다음과 같다. @Getter @Setter @NoArgsConstructor @AllArgsConstructor @Entity @IdClass(ReviewLikeId.class) public class ReviewLike extends BaseTimeEntity implements Serializable { @Id @ManyToOne(targetEntity = Review.class, fetch = FetchType.LAZY) @JoinColumn(name = "reviewId") private Review revie..