springmvc接收date类型参数
springmvc在表单提交接收date类型参数的时候会报错:Cannot convert value of type [java.lang.String] to required type [java.util.Date] for property 'actionDate'
⼀、利⽤spring的DateTimeFormat注解
让springmvc提交表单时正确的接收date类型参数,主要分以下3个步骤:
1、在需要由string转Date的字段上加上DateTimeFormat注解,代码如下:
@DateTimeFormat(pattern="yyyy-MM-dd")
private Date actionDate;
2、添加joda-time的jar包
<dependency>
<groupId>joda-time</groupId>
string转date的方法<artifactId>joda-time</artifactId>
<version>2.3</version>
</dependency>
3、在springmvc配置⽂件中添加注解映射的⽀持,代码如下:
<mvc:annotation-driven />
这种⽅法我认为是最好的⽅法。
⼆、⾃定义Converter
三、在controller中使⽤initBinder注解
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论