in the model bean add the annotation:
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm")
private Date dropofftime;
this annotation would bind the String value inputted by yser in the web page, to the Date property.
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm")
this annotation would bind the String value inputted by yser in the web page, to the Date property.