반응형
Formater
-
WebMvcConfigurer 설정 - 포메터 설정백기선(인프런 강의)/스프링 웹 MVC 2020. 9. 1. 21:17
Fometter Controller에서 URL에 값을 같이 보낼 때 문자열을 객체로 매핑해주는 역할을 하는 기능이다. Formatter에는 Printer와 Parser을 상속 받아 사용한다. Printer 해당 객체를 (Locale 정보를 참고하여) 문자열로 어떻게 출력할 것인가 Parser 어떤 문자열을(Locale 정보를 참고하여) 객체로 어떻게 변환할 것인가 기본 구성도 및 세팅 localhost:8080/hello?jinseok 으로 들어갈 시 @RestController public class SampleController { @GetMapping("/hello/{name}") public String hello(@PathVariable("name") Person person) { return ..