[spring] Spring-빈 초기화를 위해 정적 최종 필드 (상수) 사용

다음과 같이 CoreProtocolPNames 클래스의 정적 최종 필드를 사용하여 빈을 정의 할 수 있습니까?


<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";
}

가능하다면 가장 좋은 방법은 무엇입니까?



답변

이와 비슷한 것 (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;
}


답변

또는 XML에서 직접 Spring EL을 사용하는 방법 :

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

이것은 네임 스페이스 구성 작업의 추가적인 이점이 있습니다.

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


답변

스키마 위치를 지정하는 것을 잊지 마십시오 ..

<?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>


답변

위의 인스턴스에 추가 할 예가 하나 더 있습니다. 이것이 Spring을 사용하여 빈에서 정적 상수를 사용하는 방법입니다.

<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>


답변