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类型数据的主要内容,如果未能解决你的问题,请参考以下文章

苹果手机微信上form表单提交的问题

Ajax模拟Form表单提交,含多种数据上传

Simpletest PHP 脚本浏览器...如何测试提交表单名称中包含 [ ] 的表单(基本上是数组格式)?

jsp中用button提交表单数据

form表单提交后,后台怎么处理数据

form表单提交file文件传输失败