DispatchServlet
-
DispatchServlet 분석SPRING/스프링 MVC 2021. 6. 6. 19:17
DispatchServlet은 아래와 같이 구성되어 있다. MultipartResolver - 파일 업로드 요청 처리에 필요한 인터페이스 LocaleResolver - 클라이언트의 위치(Locale) 정보를 파악하는 인터페이스 ThemeResolver - 애플리케이션에 설정된 테마를 파악하고 변경할 수 있는 인터페이스 HandlerMapping - 요청을 처리할 핸들러를 찾는 인터페이스 - 기본적으로 아래 두개가 등록이 되어 있다. RequestMappingHandlerMapping : Annotation을 기반으로 Handler를 찾는다. BeanNameUrlHandlerMapping : Bean 이름을 기반으로 Handler를 찾는다. HandlerAdapter - HandlerMapping이 찾아낸..