I have a Java EE application and I want to validate a Date. With a String I do this:
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;
...
@NotNull
@Size(min = 1, max = 255)
private String myString;
But now I have two dates which I want to validate. The user can in the frontend system write a String in a text field which will be transferred via JSON (I have to use text field, I can not use a datepicker).
So my backend does have this in my domain class:
@DateTimeFormat(pattern = "dd.MM.yy")
@Temporal(value=TemporalType.TIMESTAMP)
private Date myStartDate;
@DateTimeFormat(pattern = "dd.MM.yy")
@Temporal(value=TemporalType.TIMESTAMP)
private Date myEndDate;
I want to validate against the format "dd.MM.yyyy". How can this be done?
And, I do not think so, but is there an automatic validation to check if the start date is before the end date? I only found @Future and @Past.
So the only solution is to use a @Pattern, a regular expression?!
Thank you in advance for your help, Best Regards.
@DateTimeFormatis not part of JSR-303 andmmstands for minutes, not months. Also how does changing"dd.MM.yy"to"dd.MM.yyyy"fail? Since you seem to be using Spring MVC (which this annotation is part of), you might want to revise/retag your question. At least, JSR 303 doesn't offer any annotations for this. – BalusC Jan 14 '11 at 19:13dd.MM.yyyy, but there is no validation. – Tim Jan 14 '11 at 19:19Dateinstead of aStringsince theDatedoesn't store any information about its internal format. Anyway, I don't do Spring, but I think you just need to implement a Validator. That's at least how I would do it if it were JSF. – BalusC Jan 14 '11 at 19:25@Patternonly works onString(as stated in its javadoc). Second, backslashes are escape characters inString. You need to escape it with another one to represent an actual one. – BalusC Jan 14 '11 at 19:36