개발자 쿠키

[Spring] Spring Boot 게시판 API - 댓글 구현 본문

spring

[Spring] Spring Boot 게시판 API - 댓글 구현

개발자 쿠키 2023. 5. 10. 14:18

  DB 설계

comment API

기능 Method URL Return Page
댓글 생성 POST /post/comments detail.html
댓글 조회 GET /post/comments/{id}  
댓글 수정 PUT /post/comments/{id}  
댓글 조회 DELETE /post/comments/{id} detail.html

controller

- CommentController

dto

- CommentRequestDto

- commentResponseDto

entity

- Commnet

repository

- CommentRepository

service

- CommentService