//ID로 특정 포스트 가져오기
PostDto getPostById(Long id);
@Override
public PostDto getPostById(Long id) {
Post post = postRepository.findById(id).orElseThrow(() -> new ResourceNotFoundException("Post", "id", id));
return ? (post);
}
@GetMapping("/{id}")
public ResponseEntity<PostDto> getPostById(@? Long id) {
return new ResponseEntity<>(postService.getPostById(id), HttpStatus.OK);
}