码迷,mamicode.com
首页 > 编程语言 > 详细

Spring4 customEditors

时间:2016-06-17 20:56:13      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

Spring4.0版本以后customEditors属性为Map<Class<?>, Class<? extends PropertyEditor>>,所以用key(对应要编辑的属性类别,即要编辑类的全称,含包名)、value(该类对应的属性编辑器bean)在applicationcontext.xml中进行配置

<bean class="org.springframework.beans.factory.config.CustomEditorConfigurer">
	<property name="customEditors">
		<map>
			<entry key="Chapter5.Car" value="Chapter5.CustomCarEditor">
			</entry>
		</map>
	</property>
</bean>

  

Spring4 customEditors

标签:

原文地址:http://www.cnblogs.com/SaraMoring/p/5594990.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!