Spring MVC Architecture
- 18th Sep 2015
- 14
- 85236
- controller dispatcher servlet flow of spring mvc application spring mvc application flow spring MVC architecture steps to create spring mvc application view resolver what is spring mvc architecture ?
Front Controller This is the Dispatcher servlet controller also called as Front controller which is the main controller which manages the flow of the Spring MVC application. This is defined in the web.xml as below <web-app> <servlet> <servlet-name>Dispatcher-Servlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <load-on-startup>1</load-on-startup> […]