Spring 3 MVC Tutorials, Tips & Tricks

Spring MVC is the web component of Spring’s framework. It provides a rich functionality for building robust Web Applications. The Spring MVC Framework is architected and designed in such a way that every piece of logic and functionality is highly configurable. Also Spring can integrate effortlessly with other popular Web Frameworks like Struts, WebWork, Java Server Faces and Tapestry. It means that you can even instruct Spring to use any one of the Web Frameworks. More than that Spring is not tightly coupled with Servlets or JSP to render the View to the Clients. Integration with other View technologies like Velocity, Freemarker, Excel or Pdf is also possible now.

Spring @RequestHeader Annotation example

Spring @RequestHeader Annotation example

Let us quickly check how to access http Header information in Spring MVC Controller. Spring @RequestHeader Annotation Spring MVC provides annotation @RequestHeader that can be used to map controller parameter to request header value....

Spring MVC Cookie example

Spring MVC Cookie example

In this post we will see how to access and modify http cookies of a webpage in Spring MVC framework. Read Http Cookie in Spring MVC Spring 3 MVC framework provides a very useful...