美文网首页
springMVC 页面传入日期报错问题处理:org.sprin

springMVC 页面传入日期报错问题处理:org.sprin

作者: 打不死的小强8号 | 来源:发表于2018-12-20 17:59 被阅读0次

    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));
    }
    

    转载:原文

    相关文章

      网友评论

          本文标题:springMVC 页面传入日期报错问题处理:org.sprin

          本文链接:https://www.haomeiwen.com/subject/dkkukqtx.html