czy można zdefiniować bean za pomocą statycznych pól końcowych klasy CoreProtocolPNames w następujący sposób:
<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";
}
Jeśli to możliwe, jak najlepiej to zrobić?
spring
definition
javabeans
lisak
źródło
źródło
Odpowiedzi:
Coś takiego (wiosna 2.5)
<bean id="foo" class="Bar"> <property name="myValue"> <util:constant static-field="java.lang.Integer.MAX_VALUE"/> </property> </bean>
Skąd
util
pochodzi przestrzeń nazwxmlns:util="http://www.springframework.org/schema/util"
Ale w przypadku Spring 3 lepiej byłoby użyć
@Value
adnotacji i języka wyrażeń. Co wygląda tak:public class Bar { @Value("T(java.lang.Integer).MAX_VALUE") private Integer myValue; }
źródło
T(Type)
robi w Twojej@Value
adnotacji? Nie znam tego zapisu. Zawsze używałem@Value("${my.jvm.arg.name}")
Lub, jako alternatywa, używając Spring EL bezpośrednio w XML:
<bean id="foo1" class="Foo" p:someOrgValue="#{T(org.example.Bar).myValue}"/>
Ma to dodatkową zaletę pracy z konfiguracją przestrzeni nazw:
<tx:annotation-driven order="#{T(org.example.Bar).myValue}"/>
źródło
nie zapomnij określić lokalizacji schematu.
<?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>
źródło
Jeszcze jeden przykład do dodania dla powyższej instancji. W ten sposób możesz użyć stałej statycznej w fasoli za pomocą 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; } }
źródło
<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>
źródło