我正在将我的项目从 Spring 2.5.6 迁移到 Spring 4.0.6。这是我们拥有的客户属性编辑器的 xml 定义。
<bean class="org.springframework.beans.factory.config.CustomEditorConfigurer">
<property name="customEditors">
<map>
<entry key="org.joda.time.DateTime">
<bean class="com.om.dh.util.joda.spring.DateTimeEditor">
<constructor-arg index="0">
<list>
<value>yyyyMMdd</value>
<value>yyyy-MM-dd</value>
</list>
</constructor-arg>
<constructor-arg index="1" value="true"/>
</bean>
</entry>
<entry key="org.joda.time.LocalDate">
<bean class="com.om.dh.util.joda.spring.LocalDateEditor">
<constructor-arg index="0">
<list>
<value>yyyyMMdd</value>
<value>yyyy-MM-dd</value>
</list>
</constructor-arg>
<constructor-arg index="1" value="true"/>
</bean>
</entry>
</map>
</property>
</bean>
但是,当我启动服务器时,我在日志中看到以下异常。
原因:org.springframework.beans.TypeMismatchException:无法将类型“java.util.LinkedHashMap”的属性值转换为属性“customEditors”所需的类型“java.util.Map”;嵌套异常是 java.lang.IllegalArgumentException:无法将类型 [com.om.dh.util.joda.spring.DateTimeEditor] 的值转换为属性 'customEditors[org.joda.time. DateTime]':PropertyEditor [org.springframework.beans.propertyeditors.ClassEditor] 返回了类型不正确的值 [com.om.dh.util.joda.spring.DateTimeEditor] 在 org.springframework.beans.BeanWrapperImpl.convertIfNecessary(BeanWrapperImpl.java:479) 在 org.springframework.beans.BeanWrapperImpl.convertForProperty(BeanWrapperImpl.java:511) 在 org.springframework.beans.BeanWrapperImpl.convertForProperty(BeanWrapperImpl.java:505) 在 org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.convertForProperty(AbstractAutowireCapableBeanFactory.java:1502) 在 org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1461) 在 org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1197) 在 org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:537) ... 146 更多 原因:java.lang.IllegalArgumentException:无法将类型 [com.om.dh.util.joda.spring.DateTimeEditor] 的值转换为属性“customEditors [org.joda.time] 所需的类型 [java.lang.Class]。 DateTime]':PropertyEditor [org.springframework.beans.propertyeditors.ClassEditor] 返回了类型不正确的值 [com.om.dh.util.joda.spring.DateTimeEditor] 在 org.springframework.beans.TypeConverterDelegate.convertIfNecessary(TypeConverterDelegate.java:263) 在 org.springframework.beans.TypeConverterDelegate.convertToTypedMap(TypeConverterDelegate.java:623) 在 org.springframework.beans.TypeConverterDelegate.convertIfNecessary(TypeConverterDelegate.java:208) 在 org.springframework.beans.BeanWrapperImpl.convertIfNecessary(BeanWrapperImpl.java:459) ... 152 更多
这是我的类路径中的弹簧罐列表
ls lib/*spring*
lib/mina-integration-spring-1.1.7.jar
lib/spring-context-4.0.6.RELEASE.jar
lib/spring-integration-jms-4.0.3.RELEASE.jar
lib/spring-retry-1.1.0.RELEASE.jar
lib/spring-web-4.0.6.RELEASE.jar
lib/spring-aop-4.0.6.RELEASE.jar
lib/spring-context-support-4.0.6.RELEASE.jar
lib/spring-jdbc-4.0.6.RELEASE.jar
lib/spring-security-config-3.2.4.RELEASE.jar
lib/spring-webmvc-4.0.6.RELEASE.jar
lib/spring-batch-core-3.0.1.RELEASE.jar
lib/spring-core-4.0.6.RELEASE.jar
lib/spring-jms-4.0.6.RELEASE.jar
lib/spring-security-core-3.2.4.RELEASE.jar
lib/spring-webmvc-struts-2.5.6.jar
lib/spring-batch-infrastructure-3.0.1.RELEASE.jar
lib/spring-expression-4.0.6.RELEASE.jar
lib/spring-messaging-4.0.6.RELEASE.jar
lib/spring-security-web-3.2.4.RELEASE.jar
lib/spring-xml-1.5.5.jar
lib/spring-batch-integration-3.0.1.RELEASE.jar
lib/spring-flex-1.0.1.RELEASE.jar
lib/spring-orm-4.0.6.RELEASE.jar
lib/spring-test-4.0.6.RELEASE.jar
lib/struts2-spring-plugin-2.3.15.1.jar
lib/spring-beans-4.0.6.RELEASE.jar
lib/spring-integration-core-4.0.3.RELEASE.jar
lib/spring-oxm-1.5.5.jar
lib/spring-tx-4.0.6.RELEASE.jar