web-dev-qa-db-fra.com

Spring - utilisation de champs finaux statiques (constantes) pour l'initialisation du bean

est-il possible de définir un bean en utilisant des champs finaux statiques de la classe CoreProtocolPNames comme ceci:


<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 c'est possible, quelle est la meilleure façon de procéder?

76
lisak

Quelque chose comme ça (Spring 2.5)

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

D'où vient l'espace de noms utilxmlns:util="http://www.springframework.org/schema/util"

Mais pour le printemps 3, il serait plus propre d'utiliser le @Value l'annotation et le langage d'expression. Qui ressemble à ceci:

public class Bar {
    @Value("T(Java.lang.Integer).MAX_VALUE")
    private Integer myValue;
}
105
Paul McKenzie

Ou, comme alternative, en utilisant Spring EL directement en XML:

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

Cela a l'avantage supplémentaire de travailler avec la configuration de l'espace de noms:

<tx:annotation-driven order="#{T(org.example.Bar).myValue}"/>
24
cr7pt0gr4ph7

n'oubliez pas de spécifier l'emplacement du schéma ..

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

Un autre exemple à ajouter pour l'instance ci-dessus. C'est ainsi que vous pouvez utiliser une constante statique dans un bean à l'aide de 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;
    }
}
<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>
1
chetan singhal