23.11.17) TIL - 숙련 주차 7일차
2023-11-17 19:54:46
개인 프로젝트 진행상황 comment entity와 user entity, todo entity 연관관계 설정 댓글 추가, 댓글 수정, 댓글 삭제 API 구현 댓글 관련 API의 경우 기존 할일카드 만들 때와 비슷한 형태로 구성했다. 1. 댓글 추가 API 1) CommentController - 기존의 할일카드 만들 때와 달리 할일카드의 id값이 필요하다. @RequestMapping("/api/todo/{todo_id}/comment") @PostMapping public ResponseEntity createComment( @PathVariable Long todo_id, @RequestBody CommentRequestDto requestDto) { CommentResponseDto respons..