Spring ——使用静态 final 字段(常量)进行 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";
}

如果可能的话,最好的方法是什么?

87409 次浏览

类似这样的东西(Spring 2.5)

<bean id="foo" class="Bar">
<property name="myValue">
<util:constant static-field="java.lang.Integer.MAX_VALUE"/>
</property>
</bean>

util名称空间来自哪里

但是对于 Spring3,使用 @Value注释和表达式语言会更简单。看起来像这样:

public class Bar {
@Value("T(java.lang.Integer).MAX_VALUE")
private Integer myValue;
}

要为上面的实例添加的另一个示例。这就是如何使用 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;
}
}

不要忘记指定模式位置. 。

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

或者,作为一种替代,在 XML 中直接使用 Spring EL:

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

这样处理命名空间配置还有一个额外的好处:

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