概述
项目开发中遇到这样的问题:Failed to convert from type java.lang.String to type java.util.Date for value……
点击打开链接
一、问题描述
在用SpringMVC整合mybatis的时候,在controller中调用service进行保存数据的操作,遇到了Failed to convert from type java.lang.String to type java.util.Date for value………这个错误,然后发现数据库有个字段在Entity中的类型是Date的,然后表单传过来的数据时String类型的,这时就会出现这样的 问题,类型转换错误!
二、解决办法
要加一个@InitBinder,查了一下资料,貌似是用于初始化数据的时候,进行数据类型转换,吧String类型转为Date类型,这样就不会报错了。
- @InitBinder
-
public void initBinder(WebDataBinder binder) { -
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); -
dateFormat.setLenient(true); -
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true)); -
}
最后
以上就是认真仙人掌为你收集整理的spring mvc中类型转换的全部内容,希望文章能够帮你解决spring mvc中类型转换所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复