Spring MVC Redirect Views Example

In a Spring application you may need to redirect to a view for many reasons 1. On a form submission, a controller will get the POST data to process. If after processing the data we internally forwa

Read More →

Using Themes in Spring MVC

Theme is a collection of static resources, normally style sheets and images, that affect the look and feel of an application. Themes are helpful in enriching user experience. In this post we will s

Read More →

Spring MVC Ajax Handling using JQuery

When working on a web application, we need to deal with many Ajax requests. With the use of JQuery working with AJax (post and gets) in Spring MVC is very easy. Let us see some code samples of Spri

Read More →

Spring MVC Matrix Variable Example

The URL can have name-value pairs within its path segment. To map these pairs correctly Matrix Variables can be used in Spring MVC. Lets see some of the Spring MVC Matrix Variable Examples and how

Read More →