Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Spring - using static final fields (constants) for bean initialization

is it possible to define a bean with the use of static final fields of CoreProtocolPNames class like this:


<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";  } 

If it is possible, what is the best way of doing this ?

like image 365
lisak Avatar asked May 24 '10 14:05

lisak


1 Answers

Something like this (Spring 2.5)

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

Where util namespace is from xmlns:util="http://www.springframework.org/schema/util"

But for Spring 3, it would be cleaner to use the @Value annotation and the expression language. Which looks like this:

public class Bar {     @Value("T(java.lang.Integer).MAX_VALUE")     private Integer myValue; } 
like image 181
Paul McKenzie Avatar answered Sep 18 '22 09:09

Paul McKenzie