Spring – 使用静态最终字段(常量)进行bean初始化
是否有可能使用这样的CoreProtocolPNames类的静态final字段来定义一个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"; }
如果可能的话,这样做的最好方法是什么?
像这样的东西(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
注释和expression式语言会更干净。 看起来像这样:
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}"/>
这与命名空间configuration有关的额外优势:
<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中使用静态常量。
<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>