When I have added this following code to my project
Form filledForm2 = userSignupForm.bindFromRequest();
It has stopped workin
I got the same error trying to validate int field in POJO using @Min(value = 0).
int
@Min(value = 0)
Solved by putting the annotation on getter in combination with @Valid in my bean.
@Valid