web-dev-qa-db-ja.com

Spring-Beanの初期化に静的最終フィールド(定数)を使用する

次のようなCoreProtocolPNamesクラスの静的最終フィールドを使用してBeanを定義することは可能ですか?


<bean id="httpParamBean" class="org.Apache.http.params.HttpProtocolParamBean">
     <constructor-arg ref="httpParams"/>
     <property name="httpElementCharset" value="CoreProtocolPNames.HTTP_ELEMENT_CHARSET" />
     <property name="version" value="CoreProtocolPNames.PROTOCOL_VERSION">
</bean>

public interface CoreProtocolPNames {

    public static final String PROTOCOL_VERSION = "http.protocol.version"; 

    public static final String HTTP_ELEMENT_CHARSET = "http.protocol.element-charset"; 
}

可能であれば、これを行う最善の方法は何ですか?

76
lisak

このようなもの(Spring 2.5)

<bean id="foo" class="Bar">
    <property name="myValue">
        <util:constant static-field="Java.lang.Integer.MAX_VALUE"/>
    </property>
</bean>

util名前空間はxmlns:util="http://www.springframework.org/schema/util"

しかし、Spring 3では、@Value注釈と式言語。次のようになります:

public class Bar {
    @Value("T(Java.lang.Integer).MAX_VALUE")
    private Integer myValue;
}
105
Paul McKenzie

または、代わりに、Spring ELをXMLで直接使用します。

<bean id="foo1" class="Foo" p:someOrgValue="#{T(org.example.Bar).myValue}"/>

これには、名前空間の構成を操作するという追加の利点があります。

<tx:annotation-driven order="#{T(org.example.Bar).myValue}"/>
24
cr7pt0gr4ph7

スキーマの場所を指定することを忘れないでください。

<?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:util="http://www.springframework.org/schema/util"
   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-3.1.xsd">


</beans>
12
sampath

上記のインスタンスに追加するもう1つの例。これは、Springを使用してBeanで静的定数を使用する方法です。

<bean id="foo1" class="Foo">
  <property name="someOrgValue">
    <util:constant static-field="org.example.Bar.myValue"/>
  </property>
</bean>
package org.example;

public class Bar {
  public static String myValue = "SOME_CONSTANT";
}

package someorg.example;

public class Foo {
    String someOrgValue; 
    foo(String value){
        this.someOrgValue = value;
    }
}
<util:constant id="MANAGER"
        static-field="EmployeeDTO.MANAGER" />

<util:constant id="DIRECTOR"
    static-field="EmployeeDTO.DIRECTOR" />

<!-- Use the static final bean constants here -->
<bean name="employeeTypeWrapper" class="ClassName">
    <property name="manager" ref="MANAGER" />
    <property name="director" ref="DIRECTOR" />
</bean>
1
chetan singhal