Spring MVC Tutorials
Spring MVC, a Java Model-View-Contraller (MVC) web framework, which builds on the Spring Inversion of control(IoC) framework, extensive use of the Spring’s features make the Spring MVC framework highly decouple the components dependency and simplify the whole MVC configuration.
In this series of tutorials, it’s provides many step by step examples and explanations on using Spring MVC framework.
New Spring 3 MVC Tutorials (02/08/2011)
Added many Spring 3 MVC tutorials to intergrate REST, bean validation @Valid, XML, JSON and many others. For what new in Spring 3.0, you can refer to this official Spring 3 MVC documentation
Happy learning Spring MVC :)

Spring MVC Quick Start

Let go through a quick start to understand how Spring MVC framework works.

Handler Mapping

Define how web request (URL) maps to the Controller handlers.

Controller

Controller class to handle the web request.

View Resolver

Resolve “view name” that returned from the controller class to a physical view page or JSP page.

Form Handling

Form handling in Spring MVC.

Spring’s Form Tag Library

Render HTML form’s components via Spring’s form tag.

Integrating Spring MVC with other frameworks

Integrate Spring MVC with others.

FAQ

Some common use cases.

Common Errors

Spring MVC common errors and solution.

Spring MVC References

  1. Spring 3 MVC Documentation
  2. Spring 2.5 MVC Documentation
Tags :