CommentController 더보기 @RequiredArgsConstructor @RestController public class CommentController { private final CommentService commentService; // 댓글 저장 @PostMapping("/comment") public Comment setComment(@ModelAttribute CommentDto commentDto) { return commentService.setComment(commentDto); } @GetMapping("/comment") public List getComment(@RequestParam int idx){ return commentService.getComment(idx)..