0
私は2つのdiff POJO(Bean Classes)を持っています。 2つのPOJOで2つの日付形式を使用できるように、SimpleDateFormatをdiff IDで2回初期化する必要がありますか?コンストラクタインジェクションを使用してspringのコンフィグレーションのXMLを初期化する方法
<bean id="dateFormatEmployee" class="java.text.SimpleDateFormat">
<constructor-arg value="mm-dd-yy"></constructor-arg>
<constructor-arg value="true" />
</bean>
<bean id="dateFormatUser" class="java.text.SimpleDateFormat">
<constructor-arg value="dd-mm-yyyy"></constructor-arg>
<constructor-arg value="true" />
</bean>
<bean id="employee" class="com.kranti.springcore.Employee">
<constructor-arg name="dob">
<bean factory-bean="dateFormatEmployee" factory-method="parse">
<constructor-arg value="12-20-90"></constructor-arg>
</bean>
</constructor-arg>
</bean>
<bean id="user" class="com.kranti.springcore.User">
<constructor-arg name="dob">
<bean factory-bean="dateFormatUser" factory-method="parse">
<constructor-arg value="20-12-1995"></constructor-arg>
</bean>
</constructor-arg>
</bean>
を処理するサービスの豆を持っているとしましょう。 – pvpkiran