//ID로 포스트 삭제
void deletePostById(Long id);
@Override
public void deletePostById(Long id) {
// id 로 포스트 찾기 없으면 예외 발생(커스텀 예외 생성)
Post post = postRepository.findById(id).orElseThrow(() -> new ResourceNotFoundException("Post", "id", id));
postRepository.delete(post);
}
@DeleteMapping("/{id}")
public ResponseEntity< ? > deletePost(@PathVariable Long id) {
postService. ? (id);
return new ResponseEntity<>("포스트가 성공적으로 삭제되었습니다", HttpStatus.OK);
}