77 votes

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

Est-il possible de définir un bean avec l'utilisation de 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, quel est le meilleur moyen de le faire?

109voto

Paul McKenzie Points 4841

Quelque chose comme ça (Spring 2.5)

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

util espace de noms vient de http://www.springframework.org/schema/util

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

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

25voto

cr7pt0gr4ph7 Points 154

Vous pouvez également utiliser Spring EL directement en XML:

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

Cela présente l’avantage supplémentaire de travailler avec la configuration d’espaces de noms:

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

12voto

sampath Points 183

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>
 

4voto

Un exemple supplémentaire à ajouter pour l'instance ci-dessus. Voici comment utiliser une constante statique dans un haricot avec 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;
    }
}
 

Prograide.com

Prograide est une communauté de développeurs qui cherche à élargir la connaissance de la programmation au-delà de l'anglais.
Pour cela nous avons les plus grands doutes résolus en français et vous pouvez aussi poser vos propres questions ou résoudre celles des autres.

Powered by:

X