黑马程序员技术交流社区
标题:
SpingMVC解决Date类型成员绑定出错
[打印本页]
作者:
Ruby
时间:
2015-7-4 11:32
标题:
SpingMVC解决Date类型成员绑定出错
让控制器继承SimpleFormController
重写initBinder方法
@InitBinder
protected void initBinder(HttpServletRequest request,
ServletRequestDataBinder binder) throws Exception {
DateFormat fmt = new SimpleDateFormat("yyyy-MM-dd");
CustomDateEditor dateEditor = new CustomDateEditor(fmt, true);
binder.registerCustomEditor(Date.class, dateEditor);
super.initBinder(request, binder);
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2