/**
* 为当前控制器注册一个属性编辑器--参数绑定
* 把时间串格式化为Date类型,再绑定到date。
* @param binder
*/
@InitBinder
protected void initBinder(WebDataBinder binder) {
binder.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"), true));
}
网友评论