공통 부문 역할 전처리
Spring MVC 의 요청 처리 과정
ViewResolver
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean>
주요 메서드
메서드 | 설명 |
void initStrategies(ApplicationContext context) | 기본 전략을 초기화 |
void doService(HttpServletRequest request, HttpServletResponse reponse) | doDispatch() 호출 |
void doDispatch(HttpServletRequest request, HttpServletResponse reponse) | 실제 요청을 처리 |
void processDispatchResult(HttpServletRequest request, HttpServletResponse reponse, HandlerExecutionChain) | 예외가 발생했는지 확인하고, 발생하지 않았으면 render()를 호출 |
void render(ModelAndView mv, HttpServletRequest request, HttpServletResponse reponse) | 응답결과를 생성해서 전송 |
'Spring > Ch2. Spring MVC' 카테고리의 다른 글
Spring MVC - 데이터 변환과 검증2 (2) | 2022.09.25 |
---|---|
Spring MVC - 데이터 변환과 검증 (0) | 2022.09.24 |
Spring MVC - 예외 처리2 (0) | 2022.09.22 |
Spring MVC - 예외 처리 (0) | 2022.09.22 |
Spring MVC - 로그인 페이지 만들기3 (1) | 2022.09.21 |