1. JPA 연관관계 설정방법

  • JPA 의 경우는 Enitity 클래스의 필드 위에 연관관계 어노테이션 (@) 을 설정해 주는 것만으로 연관관계가 형성됩니다!
    • '음식 배달 서버'를 개발한다고 가정
    • 중요) 항상 Enitity 본인 중심으로 관계를 생각!

주문 

@Enitity
public class Order {
    @OneToMany
    private List<Food> foods;

		@OneToOne
		private Coupon coupon;
}

 

음식 점주

@Entity
public class Owner {
	@ManyToOne
	Restaurant restaurant;
}

 

고객

@Entity
public class User{
	@ManyToMany
	List<Restaurant> pickRestaurants;
}

 

+ Recent posts