@ManyToOne, @OneToMany는 default로 EAGER 설정되어 있음
즉시로딩 -> N+1 문제 발생
연관관계가 설정된 엔티티를 조회할 경우에 조회된 데이터의 개수만큼 연관관계의 조회 쿼리가 추가로 발생해서 데이터를 읽어온다.
참고) https://dev-coco.tistory.com/139 https://incheol-jung.gitbook.io/docs/q-and-a/spring/n+1