private ContactService contactService;
@InitBinder
public void binder(WebDataBinder binder) {
//Create a new CustomDateEditor
CustomTimestampEditor editor = new CustomTimestampEditor(("yyyy-mm-dd"));
//Register it as custom editor for the Date type
binder.registerCustomEditor(Timestamp.class, editor);
}