이번에는 Spring Web MVC 에서 Formatter 를 설정하는 방법에 대해 정리 한다. Formatter 인터페이스에 대한 api 문서를 보면 크게 두 가지 인터페이스를 상속 받고 있다. Printer 는 T 타입 객체를 문자열로 출력하는 방법에 대해, Parser 는 문자열을 T 타입 객체로 출력하는 방법에 대한 것이다. 프로젝트에서 정리에 사용 할 내용만 남기고 다른 내용은 삭제 했다. package me.nimkoes; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class My..