I'm using Spring MVC with JSR303 to do my input validation.
A form I've created has a couple of date fields that are bound to Date
objects within the object backing the form. I'm using JSR303 to do the validation for the Date
using @Future
. I'm also using @DateTimeFormat(pattern="dd/MM/yyyy")
, (I know it's not validation).
How do I validate the date format of the String
on the form? If I leave the other required fields blank (@NotEmpty
) and enter a non-valid date in the form 'dd/MM/yy' it gets converted to 'dd/MM/yyyy' on re-presentation (e.g. 12/03/12 is re-presented as 12/03/0012). Which means I will get duff data in my system. If I enter "aaa" for I get a conversion Exception. Correctly formatted String
s get converted to Date
objects.
Additionally should the 'required field' annotation for Date
fields be @NotNull
or @NotEmpty
?
Many thanks in advance for any advice provided.