时间:2021-05-19
最近遇到SpringMVC写个controller类,传一个空串的字符类型过来,正常情况是会自动转成date类型的,因为数据表对应类类型就是date的
解决方法是在controller类的后面加个注解:
@InitBinder protected void initDateFormatBinder(WebDataBinder binder) { SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true)); }注意,上面的代码CustomDateEditor构造函数要传个true参数,表示允许传空字符串来进行日期类型转换
CustomDateEditor 里源码
public class CustomDateEditor extends PropertyEditorSupport { private final DateFormat dateFormat; private final boolean allowEmpty; private final int exactDateLength; public CustomDateEditor(DateFormat dateFormat, boolean allowEmpty) { this.dateFormat = dateFormat; this.allowEmpty = allowEmpty; this.exactDateLength = -1; } ....}Spring Bean类的装载是通过BeanWrapperImpl来实现,可以写个简单的例子,验证这个问题,DispatchInfoModel 类是我自己的测试类,里面有signDate这个date类型的参数
设置为true的情况,是可以正常运行的
public class mytest { public static void main(String[] args) { DispatchInfoModel tm = new DispatchInfoModel(); BeanWrapper bw = new BeanWrapperImpl(tm); bw.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd"), true)); bw.setPropertyValue("signDate", ""); System.out.println(tm.getSignDate()); }}设置为false的情况,会抛出异常:
public class mytest { public static void main(String[] args) { DispatchInfoModel tm = new DispatchInfoModel(); BeanWrapper bw = new BeanWrapperImpl(tm); bw.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd"), false)); bw.setPropertyValue("signDate", ""); System.out.println(tm.getSignDate()); }}以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
解决日期提交转换异常的问题由于日期数据有很多种格式,所以springmvc没办法把字符串转换成日期类型。所以需要自定义参数绑定。前端控制器接收到请求后,找到注解
openoffice不能调用SCIM的问题解决方法$oowriterQUOTE:Gtk-Message:Failedtoloadmodule"gnomebrea
本文实例讲述了vue父子模板传值问题解决方法。分享给大家供大家参考,具体如下:Title//引入vue(function(){//two的子模板letthree
strutsjson类型异常返回到js弹框问题解决办法当struts框架配置了异常时例如:/WEB-INF/pages/error.jsp/js/over.js
出现这个问题解决方法:点击File>Settings>Tools>ServerCertificates>Acceptnon-trustedcertificate