Now that we've looked at a few basic flows with Spring MVC, we will switch our attention to understanding how these flows work. How does the magic happen with Spring MVC?
An overview of Spring MVC
Important features
When working with the different flows, we looked at some of the important features of the Spring MVC Framework. These include the following:
- Loosely coupled architecture with well-defined, independent roles for each of the objects.
- Highly flexible Controller method definitions. Controller methods can have a varied range of parameters and return values. This gives flexibility to the programmer to choose the definition that meets their needs.
- Allows the reuse of domain objects as form backing objects. Reduces...