SpringMVC接收String类型时间数值(实体类是Date)转换

SpringMVC接收String类型字符串

bean实体是Date

加入bind

    @InitBinder
    public void initBinder(WebDataBinder binder) {
        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
//        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS Z");
        dateFormat.setLenient(false);
        binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));   //true:允许输入空值,false:不能为空值
    }

对单独字符串以及实体类bean接收都起效

posted @ 2019-12-25 00:43  ukyo--夜王  阅读(1886)  评论(0编辑  收藏  举报