# HashMap 과 ResponseEntity https://hyeonic.tistory.com/197 # For each for(Comment comment : comments){ CommentResponseDto commentResponseDto = new CommentResponseDto( comment.getId(), comment.getUser().getNickname(), comment.getComment(), comment.getCreatedAt() ); for문을 줄여서 저렇게 씀 # @Jsonignore DB에 안 올라가게 하는 어노테이션 무한참조에 관련된 어노테이션이다. @JsonIdentityInfo(generator = ObjectIdGenerators.PropertyGenerat..