Spring MVC is an MVC Framework for building Web Applications based on Servlet technology, it is provided as a part of Spring Ecosystem.

Model-View-Controller (MVC)

MVC is stands for Model-View-Controller, it is an architectural design pattern that separates the application into three main components, Model, View, and the Controller.

MvcArchitecture.drawio.svg

  1. Model
    1. A Model can be any raw data generated by the Logical layer of the application.
    2. Many times, the Business logic is also considered as a Model.
  2. View
    1. View is the visual representation of the raw data which is nothing but the Model.
    2. It can be an HTML page or a JSP page.
  3. Controller
    1. Controller is an entry and exit point of the application, where every request from the client is received and response is returned.
    2. The Controller receives the client requests and interacts with the Model to generate the raw data. The Model generates the raw data (model) along with the view specification and it is given back to the controller.
    3. The controller now interacts with the view component to generates a Visual Representation of the raw data and it is returned back to the controller, which is then returned to the client.

Spring MVC Architecture

Spring MVC adapts the MVC Architecture to help build web applications. The architecture is shown in the below diagram.

SpringMVCArchitecture.drawio.svg

Model

View