欢迎访问悦橙教程(wld5.com),关注java教程。悦橙教程  java问答|  每日更新
页面导航 : > > 文章正文

spring mvc 日期转换,springmvc,@InitBinder

来源: javaer 分享于  点击 21423 次 点评:285

spring mvc 日期转换,springmvc,@InitBinder


@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);      } 
相关栏目:

用户点评