I am trying to parse LocalDate to date in my Java code but I keep getting the following error:
{code: "unknown.unexpected", detail: "Text '02/28/1936' could not be parsed at index 0", meta: null}
My code is as follows:
private Date dateOfBirth;
public SearchByDateCommand(LocalDate dateOfBirth) {
this.dateOfBirth = dateOfBirth != null ? Date.valueOf(dateOfBirth) : null;
}
What could I be doing wrong here?