Ist es möglich, eine Bean mithilfe statischer Endfelder der CoreProtocolPNames-Klasse wie folgt zu definieren:
<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";
}
Wenn es möglich ist, wie geht das am besten?
spring
definition
javabeans
lisak
quelle
quelle
Antworten:
So etwas wie das (Frühling 2.5)
<bean id="foo" class="Bar"> <property name="myValue"> <util:constant static-field="java.lang.Integer.MAX_VALUE"/> </property> </bean>
Woher kommt der
util
Namespace?xmlns:util="http://www.springframework.org/schema/util"
Für Spring 3 wäre es jedoch sauberer, die
@Value
Annotation und die Ausdruckssprache zu verwenden. Welches sieht so aus:public class Bar { @Value("T(java.lang.Integer).MAX_VALUE") private Integer myValue; }
quelle
T(Type)
in Ihrer@Value
Anmerkung tut ? Diese Notation ist mir nicht vertraut. Ich habe immer verwendet@Value("${my.jvm.arg.name}")
Alternativ können Sie Spring EL auch direkt in XML verwenden:
<bean id="foo1" class="Foo" p:someOrgValue="#{T(org.example.Bar).myValue}"/>
Dies hat den zusätzlichen Vorteil, mit der Namespace-Konfiguration zu arbeiten:
<tx:annotation-driven order="#{T(org.example.Bar).myValue}"/>
quelle
Vergessen Sie nicht, den Speicherort des Schemas anzugeben.
<?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>
quelle
Ein weiteres Beispiel für die obige Instanz. So können Sie mit Spring eine statische Konstante in einer Bean verwenden.
<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; } }
quelle
<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>
quelle