spring form表单 Date字段处置
spring form表单 Date字段处理?@InitBinder??public?void?InitBinder(WebDataBinder?dataBinder)??{??????
spring form表单 Date字段处理
?
- @InitBinder??
- public?void?InitBinder(WebDataBinder?dataBinder)??
- {??
- ????dataBinder.registerCustomEditor(Date.class,?new?PropertyEditorSupport()?{??
- ????????public?void?setAsText(String?value)?{??
- ????????????try?{??
- ????????????????setValue(new?SimpleDateFormat("yyyy-MM-dd").parse(value));??
- ????????????}?catch(ParseException?e)?{??
- ????????????????setValue(null);??
- ????????????}??
- ????????}??
- ??
- ????????public?String?getAsText()?{??
- ????????????return?new?SimpleDateFormat("yyyy-MM-dd").format((Date)?getValue());??
- ????????}??????????
- ??
- ????});??
- }?
参考网址:http://modun.iteye.com/blog/978080