spring mvc 日期处理,springmvc,@InitBinder
分享于 点击 40780 次 点评:185
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); }s
用户点评