반응형
Spring MVC Framework with Example
https://javabeat.net/introduction-to-spring-mvc-web-framework-web-tier/
- The Client requests for a Resource in the Web Application.
- The Spring Front Controller, which is implemented as a Servlet, will intercept the Request and then will try to find out the appropriate Handler Mappings.
- The Handle Mappings is used to map a request from the Client to its Controller object by browsing over the various Controllers defined in the Configuration file.
- With the help of Handler Adapters, the Dispatcher Servlet will dispatch the Request to the Controller.
- The Controller processes the Client Request and returns the Model and the View in the form of ModelAndView object back to the Front Controller.
- The Front Controller then tries to resolve the actual View (which may be Jsp, Velocity or Free marker) by consulting the View Resolver object.
- Then the selected View is rendered back to the Client.
Let us look into the various Core Components that make up the Spring Web Tier. Following are the components covered in the next subsequent sections.
반응형
'프로그래밍 > JAVA' 카테고리의 다른 글
OSX Pro에서 아파치 톰캣(Tomcat) 설치/설정 및 이클립스 설정 (0) | 2019.04.26 |
---|---|
MAcOS Pro에 전자정부프레임워크 설치?! (0) | 2019.04.26 |
eclipse(이클립스) 유용한 단축키 (0) | 2019.04.23 |
JSTL, Function Tag의 이해 (0) | 2019.04.23 |
주석, JSP, JAVA (0) | 2019.04.23 |