spring @InitBinder

/**
* 将字符串日期转化为Date类型
* @param binder
*/
@InitBinder
protected void initBinder(WebDataBinder binder) {
SimpleDateFormat dateFormat = new SimpleDateFormat(
"yyyy-MM-dd");
binder.registerCustomEditor(Date.class, new CustomDateEditor(
dateFormat, true));
}

原文地址:https://www.cnblogs.com/newlangwen/p/6626932.html