Hi,
I'm using spring-mvc and my domain beans are using jsr 303 bean validation annotation. (eg @NotNull, @Min, @Max etc).

My application should be able to turn off bean validation because if my user press the button "draft save" they should be able to save a "draft" version of the domain object bypassing all the validation.
Is it possibile to set a parameter that turn off temporary bean validation ?

Regards

Fabio