springMVC使用@InitBinder注解把字符串转化为Date类型

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springMVC使用@InitBinder注解把字符串转化为Date类型相关的知识,希望对你有一定的参考价值。

在实际操作中经常会碰到表单中的日期 字符串和Javabean中的日期类型的属性自动转换, 而springMVC默认不支持这个格式的转换,所以必须要手动配置, 自定义数据类型的绑定才能实现这个功能。

比较简单的可以直接应用springMVC的注解@initbinder和spring自带的WebDataBinder类和操作

   @InitBinder
     public void initBinder(WebDataBinder binder) {
        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm");
        dateFormat.setLenient(false);
        binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));   //true:允许输入空值,false:不能为空值
     }

 

以上是关于springMVC使用@InitBinder注解把字符串转化为Date类型的主要内容,如果未能解决你的问题,请参考以下文章

InitBinder

@initBinder数据转换器

springMVC-InitBinder

关于springmvc怎么自动把前台string类型日期字段转换成date类型

SpringMVC的@InitBinder参数转换

springMVC数据相关