Spring MVC form validation with custom validator

In the previous post, we have seen the form validation using java validations by annotating model class with constraint validation annotations. Good part of it is, we can just add annotations on the fields of the model class and if any errors in the form as per the annotations , Binding Result will get the […]

Share this article on

Spring MVC – Redirecting model attributes from one controller to other controller

In the real world applications, we are required to redirect the request from one controller to other controller. In other words we are required to redirect the request without user interaction again. Example : Registration controller accepts the registration request and saves the user data. Then it has to redirect to home page after successful […]

Share this article on
< Previous Next >