댓글 썸네일형 리스트형 [Spring] 게시판 만들기 #11 What to do? 댓글 작성 기능 구현하기 구현내용 댓글 작성 후 제출 버튼 클릭 최신 댓글들을 위로 오게 정렬해서 댓글 보여주기 Controller 댓글 CRUD Create /comments/write 경로로 post 요청 saveComment 메써드 Read ArticleController에서 이미 구현함 Update /comments 경로로 put 요청 updateComment 메써드 Delete /comments 경로로 delete 요청 deleteComment 메써드 CommentController.java @Controller @RequestMapping("/comments") @RequiredArgsConstructor public class CommentController { priv.. 더보기 이전 1 다음