spring form表单 Date字段处理

 

  1. @InitBinder  
  2. public void InitBinder(WebDataBinder dataBinder)  
  3. {  
  4.     dataBinder.registerCustomEditor(Date.classnew PropertyEditorSupport() {  
  5.         public void setAsText(String value) {  
  6.             try {  
  7.                 setValue(new SimpleDateFormat("yyyy-MM-dd").parse(value));  
  8.             } catch(ParseException e) {  
  9.                 setValue(null);  
  10.             }  
  11.         }  
  12.   
  13.         public String getAsText() {  
  14.             return new SimpleDateFormat("yyyy-MM-dd").format((Date) getValue());  
  15.         }          
  16.   
  17.     });  

你可能感兴趣的:(spring)