码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2019-12-25 01:25:53      阅读:295      评论:0      收藏:0      [点我收藏+]

标签:实体   custom   set   for   new   类型   span   rcu   接收   

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接收都起效

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

标签:实体   custom   set   for   new   类型   span   rcu   接收   

原文地址:https://www.cnblogs.com/ukzq/p/12094445.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!