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

[springMVC]表单提涉及时间的处理

时间:2016-06-05 21:12:11      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

springMVC 这处理表单时间时,会截断时间

技术分享

解决办法:在control里绑定时间处理方法

//绑定时间处理方法
    @InitBinder
    public void initBinder(WebDataBinder binder) {
        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        dateFormat.setLenient(false);
        binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
    }

 绑定后正常了

技术分享

页面显示可以用fmt标签

技术分享

[springMVC]表单提涉及时间的处理

标签:

原文地址:http://www.cnblogs.com/zenzzat/p/5561574.html

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