form提交表单中包含time类型数据
Posted zhxn
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了form提交表单中包含time类型数据相关的知识,希望对你有一定的参考价值。
当数据库和实体类中含有date类型的数据时 ,form提交的时间数据只是string类型的,所以不能直接写入到java实体类和数据库,经过百度找到了解决方法 ,特地挪过来:
在controller中增加方法
/**
* form表单提交 Date类型数据绑定
* <功能详细描述>
* @param binder
* @see [类、类#方法、类#成员]
*/
@InitBinder
public void initBinder(WebDataBinder binder) {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
dateFormat.setLenient(false);
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
}
这样的话其它不用改动 ,提交过来的数据可以转换过来成为date类型的
亲测有效
以上是关于form提交表单中包含time类型数据的主要内容,如果未能解决你的问题,请参考以下文章