我是靠谱客的博主 乐观期待,最近开发中收集的这篇文章主要介绍WebBindingInitializer注册全局自定义编辑器转换数据,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

实现WebBindingInitializer接口 这时Controller类中不需要@InitBinder注解注释的方法

多种转换器的优先顺序:1.@InitBinder 装配的自定义编辑器 2.ConversionService装配的自定义转换器 3.WebBindingInitializer接口装配的全局自定义编辑器

1.WebInit类 在此类中注册自定义编辑器

package com.convert;

import java.util.Date;

import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.support.WebBindingInitializer;
import org.springframework.web.context.request.WebRequest;

public class WebInit implements WebBindingInitializer {

 @Override
 public void initBinder(WebDataBinder arg0, WebRequest arg1) {
  // TODO Auto-generated method stub
  arg0.registerCustomEditor(Date.class, new StringToDateConverter());
 }

}

2.springmvc.xml(配置文件)

<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
  <property name="webBindingInitializer">
   <bean class="com.convert.WebInit"></bean>
  </property>
 </bean>

最后

以上就是乐观期待为你收集整理的WebBindingInitializer注册全局自定义编辑器转换数据的全部内容,希望文章能够帮你解决WebBindingInitializer注册全局自定义编辑器转换数据所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(34)

评论列表共有 0 条评论

立即
投稿
返回
顶部