《Spring Recipes》第二章筆記:Declaring Beans from Stat...

《Spring Recipes》第二章筆記:Declaring Beans from Static Fields


問題

在配置文件中將類的靜態屬性聲明爲bean。

解決方案

在bean元素中使用Spring自帶的FieldRetrievingFactoryBean實例化bean或者使用從Spring2.5開始引入的<util:contant>標籤。

使用FieldRetrievingFactoryBean

bean:
public abstract class Product {
    public static final Product AAA = new Battery("AAA", 2.5);
    public static final Product CDRW = new Disc("CD-RW", 1.5);
... ...
}

配置文件:
(1)須要將bean的class設置爲org.springframework.beans.factory.config.FieldRetrievingFactoryBean。
(2)設置staticField屬性爲靜態屬性的徹底限定名。
<beans ...>
  <bean id="aaa" class="org.springframework.beans.factory.config.FieldRetrievingFactoryBean">
    <property name="staticField">
      <value>com.apress.springrecipes.shop.Product.AAA</value>
    </property>
  </bean>

  <bean id="cdrw" class="org.springframework.beans.factory.config.FieldRetrievingFactoryBean">
    <property name="staticField">
      <value>com.apress.springrecipes.shop.Product.CDRW</value>
    </property>
   </bean>
</beans>


使用<util:contant>標籤

配置文件:
(1)引入 util namespace。
(2)設置<util:constant>標籤的static-field屬性爲靜態屬性的徹底限定名。
<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.0.xsd
    http://www.springframework.org/schema/util
    http://www.springframework.org/schema/util/spring-util-3.0.xsd">
    
    <util:constant id="aaa"
      static-field="com.apress.springrecipes.shop.Product.AAA" />
    
    <util:constant id="cdrw"
      static-field="com.apress.springrecipes.shop.Product.CDRW" />
</beans>
相關文章
相關標籤/搜索