포스트 가져올때 댓글도 같이 표시

jb kim·2022년 3월 4일
0

REST API 블로그 앱

목록 보기
34/65

Post 에 이미 댓글들이 set리스트로 포함 되어 있으나 PostDto에 없음

	@OneToMany(mappedBy = "post", cascade = CascadeType.ALL, orphanRemoval = true)
	private Set<Comment> comments = new HashSet<>();

PostDto 추가

private Set<CommentDto> comments;

ModelMapper가 자동으로 Post의 댓글들을 PostDto로 매핑

Post Entity의 @Data => @Getter, @Setter 로 수정

@Data 일때 자동으로 댓글의 포스트 댓글 포스트 댓글로 무한 반복됨

profile
픽서

0개의 댓글