JPA - 댓글 CRUD
·
TIL
생성한 일정에 댓글을 남길 수 있습니다.댓글과 일정은 연관관계를 가집니다.댓글을 저장, 조회, 수정, 삭제할 수 있습니다.댓글은 아래와 같은 필드를 가집니다.댓글 내용, 작성일, 수정일, 작성 유저명 필드 댓글은 특정 게시글에 남기는 것이므로 컨트롤러에서 요청을 받을 때 일정의 고유값인 todoId를 같이 받도록하였다. Controller@RestController@RequestMapping("/api/comment")@RequiredArgsConstructorpublic class CommentController { private final CommentService cmtService; @GetMapping("/{todoId}") public ResponseEntity> findBy..