스프링 Converter

@GetMapping("/posts/{id}")
public String getPost(@PathVariable Long id) {
	Optional<Post> byId = postRepository.findById(id);
	Post post = byId.get();
	return post.getTitle();
}
@GetMapping("/posts/{id}")
public String getPost(@PathVariable("id") Post post) {
	return post.getTitle();
}

포매터는 문자열 기반, 시작이 무조건 문자열, 스트링을 어떻게 다른 타입으로 바꿀 것인가.