1. 程式人生 > >spring @Value 用法

spring @Value 用法

首先,@value需要引數,這裡引數可以是兩種形式:
1、@Value("#{configProperties['t1.msgname']}") SpEL表示式:通常用來獲取bean的屬性,或者呼叫bean的某個方法。當然還有可以表示常量。
2、@Value("${t1.msgname}") 可以獲取對應屬性檔案中定義的屬性值。

下面我們來看看如何使用這兩形式,在配置上有什麼區別:

一、@Value("#{configProperties['t1.msgname']}")這種形式的配置中有“configProperties”,其實它指定的是配置檔案的載入物件,配置如下:

    <bean
id="configProperties" class="org.springframework.beans.factory.config.PropertiesFactoryBean">
<property name="locations"> <list> <value>classpath:/config/t1.properties</value> </list> </property> </bean>

也可以是下面這種:

@Value("#{1}")
private int number; //把數字 1  注入number

@Value("#{'Spring Expression Language'}") //獲取字串常量“Spring Expression Language”
private String str;

@Value("#{t1.msgname}") //獲取bean的屬性
private String jdbcUrl;  

二、
@Value(“${t1.msgname}”) 這種形式不需要指定具體載入物件,這時候需要一個關鍵的物件來完成PreferencesPlaceholderConfigurer,這個物件的配置可以利用上面配置(一)中的配置,也可以自己直接自定配置檔案路徑。
如果使用配置1中的配置,可以在配置檔案中加入如下:

    <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer">
        <property name="properties" ref="configProperties"/>
    </bean>
如果直接指定配置檔案的話,可以寫成如下情況:
    <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer">
        <property name="location">
        <value>config/t1.properties</value>
        </property>
    </bean>