1 springMVC 页面传入日期报错问题处理:网上查了很多资料,大多都是很相似的,但是并没有解决我的问题,在此发一个简单的方法,仅供参考:
2 报错日志 org.springframework.validation.BindException: org.springframework.validation.BeanPropertyBindingResult: 2 errors
3 解决方式:
在springMVC Controller中加入下方代码,然后解决问题
@InitBinder
public void init(WebDataBinder binder) {
binder.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat(“yyyy-MM-dd”), true));
}
原文链接:https://blog.csdn.net/w343033751/article/details/51614719