解决springmvc关于前台日期作为实体类对象参数类型转换错误的问题
页面报错:
后台错误:
field error in object 'user' on field 'birthday': rejected value [2013-06-24]; codes [typemismatch.user.birthday,typemismatch.birthday,typemismatch.java.util.date,typemismatch]; arguments [org.springframework.context.support.defaultmessagesourceresolvable: codes [user.birthday,birthday]; arguments []; default message [birthday]]; default message [failed to convert property value of type 'java.lang.string' to required type 'java.util.date' for property 'birthday'; nested exception is org.springframework.core.convert.conversionfailedexception: failed to convert from type java.lang.string to type java.util.date for value '2013-06-24'; nested exception is java.lang.illegalargumentexception]
解决方案1:在对应的实体类属性上加入 @datetimeformat(pattern = "yyyy-mm-dd")
解决方案2:不使用 <mvc:annotation-driven/>注解
使用 defaultannotationhandlermapping 和 annotationmethodhandleradapter 注解驱动配置
在对应的实体类属性上加入 @datetimeformat(pattern = "yyyy-mm-dd")
<bean class="org.springframework.web.servlet.mvc.annotation.defaultannotationhandlermapping"/> <bean class="org.springframework.web.servlet.mvc.annotation.annotationmethodhandleradapter"> <property name="webbindinginitializer"> <bean class="org.springframework.web.bind.support.configurablewebbindinginitializer"> <property name="conversionservice"> <bean class="org.springframework.format.support.formattingconversionservicefactorybean"/> </property> </bean> </property> </bean>
3、使用 @initbinder注解,注册一个父类controller(basecontroller),其他controller去继承它
springmvc配置文件 <bean class="org.springframework.web.servlet.mvc.annotation.defaultannotationhandlermapping"/> <bean class="org.springframework.web.servlet.mvc.annotation.annotationmethodhandleradapter"/>
public class basecontroller { @initbinder public void initbinder(webdatabinder binder) { /** * 第一种方式:使用webdatabinder注册一个自定义的编辑器,编辑器是日期类型 * 使用自定义的日期编辑器,日期格式:yyyy-mm-dd,第二个参数为是否为空 true代表可以为空 */ binder.registercustomeditor(date.class, new customdateeditor( new simpledateformat("yyyy-mm-dd"), true)); } }
或者使用下面的方式
public class basecontroller { @initbinder public void initbinder(webdatabinder binder) { /** * 方式二:使用webdatabinder注册一个自定义的编辑器,编辑器是日期类型 * 使用属性编辑器实现:重载setastext,getastext */ binder.registercustomeditor(date.class, new propertyeditorsupport() { @override public string getastext() { return new simpledateformat("yyyy-mm-dd") .format((date) getvalue()); } @override public void setastext(string text) { try { setvalue(new simpledateformat("yyyy-mm-dd").parse(text)); } catch (exception e) { e.printstacktrace(); setvalue(null); } } }); } }
以上这篇解决springmvc关于前台日期作为实体类对象参数类型转换错误的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。