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

spring mvc 日期转换

时间:2015-01-05 16:58:33      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:

@InitBinder  
    protected void initBinder(HttpServletRequest request,  
            ServletRequestDataBinder binder) throws Exception {  
            DateFormat df = new SimpleDateFormat("yyyy-MM-dd");  
            CustomDateEditor editor = new CustomDateEditor(df, false);  
            binder.registerCustomEditor(Date.class, editor);  
    }

spring mvc 日期转换

标签:

原文地址:http://my.oschina.net/u/2274056/blog/363858

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