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

spring mvc 日期处理

时间:2014-12-29 21:40:14      阅读:199      评论: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);  
    }
s

spring mvc 日期处理

标签:

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

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