程序员人生 网站导航

SpringMVC自定义属性编辑器

栏目:综合技术时间:2015-01-06 08:35:21

自定义springMVC的属性编辑器主要有两种方式,1种是使用@InitBinder标签在运行期注册1个属性编辑器,这类编辑器只在当前Controller里面有效;还有1种是实现自己的 WebBindingInitializer,然后定义1个AnnotationMethodHandlerAdapter的bean,在此bean里面进行注册 ,这类属性编辑器是全局的。

 

第1种方式:

Java代码
 收藏代码
  1. import java.beans.PropertyEditorSupport;  
  2. import java.io.IOException;  
  3. import java.text.SimpleDateFormat;  
  4. import java.util.Date;  
  5.   
  6. import javax.servlet.http.HttpServletResponse;  
  7.   
  8. import org.springframework.beans.propertyeditors.CustomDateEditor;  
  9. import org.springframework.stereotype.Controller;  
  10. import org.springframework.web.bind.WebDataBinder;  
  11. import org.springframework.web.bind.annotation.InitBinder;  
  12. import org.springframework.web.bind.annotation.PathVariable;  
  13. import org.springframework.web.bind.annotation.RequestMapping;  
  14.   
  15. @Controller  
  16. public class GlobalController {  
  17.   
  18.       
  19.     @RequestMapping("test/{date}")  
  20.     public void test(@PathVariable Date date, HttpServletResponse response) throws IOException  
  21.         response.getWriter().write( date);  
  22.   
  23.     }  
  24.       
  25.     @InitBinder//必须有1个参数WebDataBinder  
  26.     public void initBinder(WebDataBinder binder) {  
  27.         binder.registerCustomEditor(Date.classnew CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd"), false));  
  28.   
  29.                 binder.registerCustomEditor(int.classnew PropertyEditorSupport() {  
  30.   
  31.             @Override  
  32.             public String getAsText() {  
  33.                 // TODO Auto-generated method stub  
  34.                 return getValue().toString();  
  35.             }  
  36.   
  37.             @Override  
  38.             public void setAsText(String text) throws IllegalArgumentException {  
  39.                 // TODO Auto-generated method stub  
  40.                 System.out.println(text + "...........................................");  
  41.                 setValue(Integer.parseInt(text));  
  42.             }  
  43.               
  44.         });  
  45.     }  
  46.       
  47.       
  48. }  

  这类方式这样写了就能够了

 

 

 

第2种:

 

1.定义自己的WebBindingInitializer

 

Java代码
 收藏代码
  1. package com.xxx.blog.util;  
  2.   
  3. import java.util.Date;  
  4. import java.text.SimpleDateFormat;  
  5.   
  6. import org.springframework.beans.propertyeditors.CustomDateEditor;  
  7. import org.springframework.web.bind.WebDataBinder;  
  8. import org.springframework.web.bind.support.WebBindingInitializer;  
  9. import org.springframework.web.context.request.WebRequest;  
  10.   
  11. public class MyWebBindingInitializer implements WebBindingInitializer {  
  12.   
  13.     @Override  
  14.     public void initBinder(WebDataBinder binder, WebRequest request) {  
  15.         // TODO Auto-generated method stub  
  16.         binder.registerCustomEditor(Date.classnew CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd"), false));  
  17.     }  
  18.   
  19. }  

 

2.在springMVC的配置文件里面定义1个AnnotationMethodHandlerAdapter,并设置其WebBindingInitializer属性为我们自己定义的WebBindingInitializer对象

 

Xml代码
 收藏代码
  1. <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">  
  2.         <property name="cacheSeconds" value="0"/>  
  3.         <property name="webBindingInitializer">  
  4.             <bean class="com.xxx.blog.util.MyWebBindingInitializer"/>  
  5.         </property>  
  6.     </bean>  

 第2种方式经过上面两步就能够定义1个全局的属性编辑器了。

注意:当使用了<mvc:annotation-driven />的时候,它 会自动注册DefaultAnnotationHandlerMapping与AnnotationMethodHandlerAdapter 两个bean。这时候候第2种方式指定的全局属性编辑器就不会起作用了,解决办法就是手动的添加上述bean,并把它们加在<mvc:annotation-driven/>的前面。


------分隔线----------------------------
------分隔线----------------------------

最新技术推荐