SpringとProSpringでドキュメントを検索しました。CustomerEditorConfigurerがプロパティ変換を適用する場所をどのように認識しているかわかりません。元 -
日付変数(jodatTime)を持つContactクラスがあり、PropertyEditorSupportを拡張するContactPropertyEditorを作成し、setAsText()を使用して文字列の日付を変換しています。
次に、アプリケーションに移動して、jodaTimeをContactPropertyEditorにマップするように指示しているCustomerEditorConfigurerを定義します。これには、Contactクラスが作成されたときに、ContactPropertyEditorを使用して変換を行うことをSpringに通知する情報がありません。
そこで、私の理論をテストするために、Contactと同じプロパティ(Date)を持つ別のクラス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 import 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));
}
}
applicationContext.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クラスであることを通知することだけです。これをContact.javaクラスに適用することをSpringに伝えません。
魔法はどのように起こっていますか。
Springのドキュメントでは、意味のある他のことを述べています。
Springのドキュメントには、nameプロパティを持つExoticType()というクラスがあります。ExoticTypeEditorと呼ばれるエディターcalsは、名前を大文字に変更するために使用され、アプリケーションコンテキストxmlは明確です
<bean class="org.springframework.beans.factory.config.CustomEditorConfigurer">
<property name="customEditors">
<map>
<entry key="example.ExoticType" value="example.ExoticTypeEditor"/>
</map>
</property>
ここでは、ExoticTypeEditorを使用してクラスExoticTypeに変換を適用するようにCustomEditorConfigurerに指示していることがわかりますが、ProSpring3の本には当てはまりません。連絡先の例で同じことをしようとしましたが、エラーが発生しました。
<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>
エラー:プロパティ'birthDate'のタイプ[java.lang.String]の値を必要なタイプ[org.joda.time.DateTime]に変換できません:一致するエディターまたは変換戦略が見つかりません
私が何を見逃しているのか分かりますか?