Spring Framework

Spring Projects

Spring Project 1

adplus-dvertising
Introduction of Spring MVC
Previous Home Next

The Spring MVC provide the facility to developed web application in the Spring Framework. Spring MVC work in MVC (Model View Controller) concept,modelrepresent the date and business logic and view representthe presentation logic and Controller represent the workflow.

The Spring MVC working in , User sent the request then DispatcherServlet (Front controller) handle this request and invoke applicationContext configuration.The applicationContext configuration identify the user request then invoke this request type Controller class which are configure in the applicationContext. Then the Controller class return the ModelAndView (Presentation logic) object and befor return the ModelAndView object process the business logic.

  1. Model: Represent Data and Business logic.
  2. View: Represent the presentation logic.
  3. Controller: Represent the workflow.
  4. Previous Home Next