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


82

다음과 같이 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"; 
}

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


질문을 삭제하거나 그대로 두십시오. 감사.
Pascal Thivent

답변:


113

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

2
의 schemaLocation = "또한 스키마 위치 XSI 추가 springframework.org/schema/util springframework.org/schema/util/spring-util-3.1.xsd을 >"
sampath

1
XML 구성에 Spring EL을 사용하면 다음과 같이 작동합니다. # {T (com.foo.Headers) .HEADER_STATUS} as jonstefansson.blogspot.com/2011/02/…
8bitme

1
Annotation에 의해 bean이 선언되었을 때 어떻게 필드를 private 및 final로 표시 할 수 있습니까?
Gunjan Shah 2011

주석 T(Type)에서 무엇을하는지 설명해 주 @Value시겠습니까? 나는 그 표기법에 익숙하지 않습니다. 난 항상 사용했습니다@Value("${my.jvm.arg.name}")
블레이크

저는 여전히 '깨끗한'주석의 이점으로 어려움을 겪고 있습니다. @Value의 문제는 구성을 변경하려면 코드를 다시 릴리스해야한다는 것입니다. XML을 사용하는 경우 구성을 별도로 다시 릴리스하거나 다른 집합을 가질 수 있습니다. 환경에 따라 다릅니다.
Ed Randall

27

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

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

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

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

12

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

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

4

위의 인스턴스에 추가 할 예가 하나 더 있습니다. 이것이 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;
    }
}

1
<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>
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.