Spring Boot : Component로 Bean 등록 방법으로 컨버팅하기 (3)

이전글

  • https://leesoo7595.github.io/2018/10/21/Spring_ConfigurableWebBindingInitializer/
  • https://leesoo7595.github.io/2018/10/21/Spring_WebMvcConfigurer_addFormatters_customizing/

위 방법보다 더욱 간단한 방법인 @Component를 통해 LibraryConverter 클래스를 빈으로 등록하여 곧바로 컨버팅하게 한다.

매우 간단ㅎㅎㅎㅎ

LibraryConverter 클래스

@Component
public class  LibraryConverter implements Converter<String, Library> {
     @Override
    public Library convert(String id) {
         Library library = new Library();
         library.setId(Integer.parseInt(id));
         return null;
     }
 }

이렇게만 해주면 사실 끝!! 앞의 방법들은….안쓸듯 우워