¿Es posible definir un bean con el uso de campos finales estáticos de la clase CoreProtocolPNames como este:
<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";
}
Si es posible, ¿cuál es la mejor forma de hacerlo?
spring
definition
javabeans
lisak
fuente
fuente
Respuestas:
Algo como esto (Primavera 2.5)
<bean id="foo" class="Bar"> <property name="myValue"> <util:constant static-field="java.lang.Integer.MAX_VALUE"/> </property> </bean>
De donde
util
es el espacio de nombresxmlns:util="http://www.springframework.org/schema/util"
Pero para Spring 3, sería más limpio usar la
@Value
anotación y el lenguaje de expresión. Que se ve así:public class Bar { @Value("T(java.lang.Integer).MAX_VALUE") private Integer myValue; }
fuente
T(Type)
hace en tu@Value
anotación? No estoy familiarizado con esa notación. Siempre lo he usado@Value("${my.jvm.arg.name}")
O, como alternativa, usando Spring EL directamente en XML:
<bean id="foo1" class="Foo" p:someOrgValue="#{T(org.example.Bar).myValue}"/>
Esto tiene la ventaja adicional de trabajar con la configuración del espacio de nombres:
<tx:annotation-driven order="#{T(org.example.Bar).myValue}"/>
fuente
no olvide especificar la ubicación del esquema.
<?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>
fuente
Un ejemplo más para agregar para la instancia anterior. Así es como puede usar una constante estática en un bean usando 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; } }
fuente
<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>
fuente