标签:style blog class code java c
@InitBinder
在controller中注册一个customer protperty editor以解析request中的参数并通过date bind机制与handler
method中的参数做绑定。
@InitBinder public void initBinder(WebDataBinder binder) { SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); dateFormat.setLenient(false); binder.registerCustomEditor(Date.class, new CustomDateEditor( dateFormat, false)); }
Handler method代码如下
@RequestMapping("/databind") public ModelAndView databind1(Date date) { … }
访问url
http://localhost:8080/springmvc/databind?date=2000-01-02
通过initbinder中注册的customeDateEditor类型,自动将2000-01-02转换为日期类型
标签:style blog class code java c
原文地址:http://www.cnblogs.com/yangzhilong/p/3726741.html