@Valid: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 6: Line 6:
=Overview=
=Overview=


When used with Spring MVC
When used with [[Spring_Validation_Concepts#Configure_Controller_Methods_for_which_Validation_Should_Be_Performed|Spring MVC]], @Valid configures Spring MVC to perform the validation of the submitted domain model object instance after it is bound to the submitted form data and before the controller handler method is called.

Revision as of 05:59, 12 October 2018

Internal

Overview

When used with Spring MVC, @Valid configures Spring MVC to perform the validation of the submitted domain model object instance after it is bound to the submitted form data and before the controller handler method is called.