[JPA] 연관관계[1/2] - 양방향
객체의 연관관계 객체에서는 참조를 통해서 객체 간의 연관관계를 맺는다. 아래와 같은 경우에는 서로에 대해 참조값을 가지고 있으므로 양방향 연관관계라고 볼 수 있다. @Entity class Person { @Id @GeneratedValue private Long id; private Address address; } @Entity class Address { @Id @GeneratedValue private Long id; private Set persons = new HashSet(); } Person에서 Address에 관심이 없는 경우에는 단방향 연관관계가 되며 다음과 같이 작성할 수 있다. @Entity class Person { @Id @GeneratedValue private Long id;..
2021.12.03