Spring MVC - Spring MVC Introduction
In this example we will give you quick over view of Spring MVC Framework. The Spring MVC framework is the MVC stack for the development of web applications based Model View Controller (MVC) architecture. What is MVC architecture? The MVC or Model View Controller architecture is famous design pattern used in designing the applications. This design pattern separates the application into three parts called Model, View and Controller. Model: Model is the business data or simple the data of the application. View: View is the presentation part of the application such as data entry form, reports etc. Controller: The controller component delegates between Model and view. Spring MVC The Spring Framework is light-weight container and it supports multiple frameworks and libraries. The Spring framework allows the developers to mix and match multiple frameworks while developing and deploying the applications. The Spring MVC takes the advantage of Spring framew...