use of com.in28minutes.springmvc.web.util.TodoPriorityPropertyEditor in project SpringStepByStep by JavaProgrammerLB.
the class TodoController method initBinder.
@InitBinder
public void initBinder(WebDataBinder binder) {
SimpleDateFormat dateFormat = new SimpleDateFormat(TodoListUtils.DATE_FORMAT);
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, false));
binder.registerCustomEditor(Priority.class, new TodoPriorityPropertyEditor());
}
Aggregations