0

我在 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]:找不到匹配的编辑器或转换策略

知道我错过了什么吗?

4

2 回答 2

2

当您PropertyEditor在应用程序上下文中注册 a 时,您正在提供从String某种类型到某种类型的转换器,在您的情况下是JodaTime类型。持有类型的 bean, ( Contact) 无关紧要。应用程序上下文将在需要设置任何 bean 类型属性的任何时候使用您ContactPropertyEditor编辑JodaTimeString

所以ContactPropertyEdit这是一个坏名字。它应该是 JodaTimePropertyEditor。

如果你想要一个真实的ContactPropertyEditor,它应该将字符串转换为联系人。例如:

<bean id="someBeanHoldingAContact" class="someBeanClass">
<property name="contact" value="Hendrix, Jimi, 1942-11-27, http://www.jimihendrix.com" />
</bean>

并且 ContactPropertyEditor 应该使用字符串值来创建联系人。

魔术在课堂org.springframework.beans.BeanWrapperImp上。请参阅 javadoc

于 2013-02-22T01:10:03.853 回答
0

如果人们搜索这个标题试图找到如何在转换时动态获取目标类,您可以尝试使用 ConditionalGenericConverter。

相关部分:

检查每个转换请求:

    @Override
public Set<ConvertiblePair> getConvertibleTypes() {
    return null;//accept everything
}

如果您处理这种情况或将其传递给 spring 默认转换器,请检查何时请求转换:

 @Override
public boolean matches(TypeDescriptor sourceType, TypeDescriptor targetType) {
       if (sourceType.getType().equals(String.class) && MyInterface.class.isAssignableFrom(targetType.getType()))
        return true; 
return false;
}

处理转换:

@Override
public Object convert(Object source, TypeDescriptor sourceType, TypeDescriptor targetType) {    
output = targetType.getType().newInstance();
//do whatever is required here
return output;
}
于 2017-02-15T17:08:23.953 回答