我在 Spring 和 Pro Spring 中搜索了文档。我不明白 CustomerEditorConfigurer 如何知道它应该在哪里应用属性转换。前任 -
我有一个联系人类,它有一个日期变量(jodatTime)我创建了一个扩展 PropertyEditorSupport 的 ContactPropertyEditor,我正在使用 setAsText() 来转换字符串日期。
然后我进入应用程序并定义 CustomerEditorConfigurer,我告诉它将 jodaTime 映射到 ContactPropertyEditor。现在这没有信息告诉 Spring 在创建 Contact 类时使用 ContactPropertyEditor 进行转换。
因此,为了测试我的理论,我创建了另一个具有与联系人相同属性(日期)的类 Contact2。当我运行转换时,Contact2 也会发生,这有点奇怪。
这是代码示例 Contact.java
public class Contact {
private String firstName;
private String lastName;
private DateTime birthDate;
private URL personalSite;
public String toString() {
return "First name: " + getFirstName()
+ " - Last name: " + getLastName()
+ " - Birth date: " + getBirthDate()
+ " - Personal site: " + getPersonalSite();
}
// Getter/setter methods omitted
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public DateTime getBirthDate() {
return birthDate;
}
public void setBirthDate(DateTime birthDate) {
this.birthDate = birthDate;
}
public URL getPersonalSite() {
return personalSite;
}
public void setPersonalSite(URL personalSite) {
this.personalSite = personalSite;
}
}
ContactPropertyEditor.java 导入 java.beans.PropertyEditorSupport;
import org.joda.time.DateTime;
import org.joda.time.format.DateTimeFormat;
import org.joda.time.format.DateTimeFormatter;
import org.springframework.stereotype.Component;
public class ContactPropertEditor extends PropertyEditorSupport{
private DateTimeFormatter dateTimeFormatter;
public ContactPropertEditor(String formatPattern){
System.out.println("In the constructor");
dateTimeFormatter=DateTimeFormat.forPattern(formatPattern);
}
public void setAsText(String text) throws IllegalArgumentException{
System.out.println("Setting the value of " + text);
setValue(DateTime.parse(text, dateTimeFormatter));
}
}
应用程序上下文.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xmlns:util="http://www.springframework.org/schema/util" xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<context:component-scan base-package="com.dinesh"></context:component-scan>
<context:annotation-config />
<!-- This holds the property values and formats -->
<context:property-placeholder location="classpath:application.properties" />
<bean class="com.dinesh.PropertyEditor.ContactPropertEditor" id="contactPropertEditor">
<constructor-arg><value>"yyyy-MM-dd"</value></constructor-arg>
</bean>
<bean class="org.springframework.beans.factory.config.CustomEditorConfigurer">
<property name="customEditors">
<map>
<entry key="org.joda.time.DateTime">
<ref local="contactPropertEditor" />
</entry>
</map>
</property>
</bean>
<bean id="clarence" class="com.dinesh.PropertyEditor.Contact"
p:firstName="Clarence" p:lastName="Ho" p:birthDate="1970-12-31"
p:personalSite="http://www.clarence.com" />
<bean id="contact2" class="com.dinesh.PropertyEditor.Customer2"
p:firstName="Clarence" p:lastName="Ho" p:birthDate="1970-12-31"
p:personalSite="http://www.clarence.com" />
现在你可以看到我所做的只是告诉 org.springframework.beans.factory.config.CustomEditorConfigurer 我的属性转换逻辑是 contactPropertEditor 类。我没有告诉 Spring 在 Contact.java 类上应用它。
魔术是如何发生的。
在 Spring 文档中,它说了一些有意义的东西。
Spring 文档有一个名为 ExoticType() 的类,它具有 name 属性。一个名为 ExoticTypeEditor 的编辑器用于将名称更改为大写,并且应用程序上下文 xml 清晰
<bean class="org.springframework.beans.factory.config.CustomEditorConfigurer">
<property name="customEditors">
<map>
<entry key="example.ExoticType" value="example.ExoticTypeEditor"/>
</map>
</property>
在这里,我可以看到我告诉 CustomEditorConfigurer 使用 ExoticTypeEditor 对类 ExoticType 应用转换,但在 Pro Spring 3 书中并非如此。我尝试在 Contact Example 中执行相同的操作,但出现错误。
<bean class="org.springframework.beans.factory.config.CustomEditorConfigurer">
<property name="customEditors">
<map>
<entry key="com.dinesh.PropertyEditor.Contact">
<ref local="contactPropertEditor" />
</entry>
</map>
</property>
</bean>
错误:无法将类型 [java.lang.String] 的值转换为属性“birthDate”所需的类型 [org.joda.time.DateTime]:找不到匹配的编辑器或转换策略
知道我错过了什么吗?