在对应的controller中增加属性编辑器:
@InitBinder
protected void initBinder(WebDataBinder binder) {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
}
- 本文标题: SpringMVC 前台post提交表单接收不到date格式数据
- 文章分类:【JavaWeb】
- 非特殊说明,本文版权归【胡同里的砖头】个人博客 所有,转载请注明出处.