package org.springframework.web.servlet.mvc.method.annotation;
public class RequestMappingHandlerAdapter extends AbstractHandlerMethodAdapter
implements BeanFactoryAware, InitializingBean {
@Nullable
protected ModelAndView invokeHandlerMethod(HttpServletRequest request,
HttpServletResponse response, HandlerMethod handlerMethod) throws Exception {
ServletWebRequest webRequest = new ServletWebRequest(request, response);
'Programing > Framework' 카테고리의 다른 글
[spring] JSR-303 과 @Valid 과 @Validated (0) | 2020.11.11 |
---|---|
[spring] URL path template에서 매핑된 값 구하기 (0) | 2020.11.11 |
[Spring] Controller & RequestMapping : RequestMappingInfo (0) | 2020.11.10 |
[JOOQ] MySQL JDBC batch 벤치마킹 (0) | 2020.10.13 |
[Spring MVC] HandlerMethodArgumentResolver 구현하기 (0) | 2020.09.18 |