Spring Framework

Spring Projects

Spring Project 1

adplus-dvertising
Concept of Spring MVC
Previous Home Next

Spring mvc provide the model view controller architecture concept. The purpose of this concept provide the implementation of web application in Spring Framework. Which need to act on user request and manipulate and display data. There are three different concept of this pattern:

  1. Model: Model components represents a data for spring MVC usually a Map of Model object is used as Model Component. In most cases ,the model cases, the model will consist of JavaBean.
  2. View: View is responsible for presenting data to the end user. A view component provide the facility to display the text in appropriate formatting in a web application. it will, in most cases generate HTML output that the client's browser.
  3. Controller: The controller is a logic that is responsible for processing and acting on user requests.
Previous Home Next