프로젝트
-
연관관계 사이의 무한 호출프로젝트/Trend-Pick 2023. 7. 11. 22:52
댓글 리스트를 출력하려고 했는데 무한 루프를 돌면서 쿼리가 계속해서 나가는 오류가 나왔다. Post와 Comment 사이의 연관관계가 이렇게 맺어져있다. @OneToMany(mappedBy = "post", cascade = CascadeType.ALL) private List commentList = new ArrayList(); @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "post_id") private Post post; @GetMapping("/post/{postId}") // 3번의 게시글 하나 클릭해서 들어가는 것 public PostWithCommentDto createPost(@PathVariable ("postId") Long post..