springMVC自定义属性编辑器

来源:互联网 发布:淘宝账号 编辑:程序博客网 时间:2024/05/22 00:35

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

 

第一种方式:

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//必须有一个参数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. }  

  这种方式这样写了就可以了

 

 

 

第二种:

 

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的配置文件里面定义一个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>  

 第二种方式经过上面两步就可以定义一个全局的属性编辑器了。

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


我在spring4 操作的时候,配置annotationmethodHandlerAdapter是没有作用的,换成RequestMappingHandlerAdapter就好了。


<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">            <property name="webBindingInitializer" >                <bean class = "com.java.util.MyWebBindingInitializer"/>            </property >        </bean> <!-- 使用注解的包,包括子集 --><context:component-scan base-package="com.java.controller" /><mvc:annotation-driven/>




0 0
原创粉丝点击