实体的时间date属性的字段之表单提交
Posted bbllw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实体的时间date属性的字段之表单提交相关的知识,希望对你有一定的参考价值。
@InitBinder public void initBinder(WebDataBinder binder) DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); dateFormat.setLenient(true); binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
这是springboot后台格式化日期字段的方法,直接放在控制层他就可以用了
以上是关于实体的时间date属性的字段之表单提交的主要内容,如果未能解决你的问题,请参考以下文章
Easyui在form表单提交的时候,如果有datebox报 Uncaught SyntaxError: Unexpected token < 的解决