ID로 포스트 가져오기

jb kim·2022년 3월 2일
0

REST API 블로그 앱

목록 보기
19/65

1. PostService 추가

	//ID로 특정 포스트 가져오기
	PostDto getPostById(Long id);

2. PostServiceImpl

	@Override
	public PostDto getPostById(Long id) {
		Post post = postRepository.findById(id).orElseThrow(() -> new ResourceNotFoundException("Post", "id", id));
		return ? (post);
	}

3. 컨트롤러

	@GetMapping("/{id}")
	public ResponseEntity<PostDto> getPostById(@? Long id) {
		return new ResponseEntity<>(postService.getPostById(id), HttpStatus.OK);
	}

4. 테스트

profile
픽서

0개의 댓글