首頁 > 軟體

Spring @value用法範例詳解

2022-08-24 18:01:34

為了簡化讀取properties檔案中的設定值,spring支援@value註解的方式來獲取,這種方式大大簡化了專案設定,提高業務中的靈活性。

一、兩種使用方法

1、@Value(“#{configProperties[‘key’]}”)

2、@Value(“${key}”)

二、設定

2.1 @Value(“#{configProperties[‘key’]}”)使用

2.1.1組態檔:

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

設定方法2:
<util:properties id="configProperties" location="classpath:value.properties"></util:properties>

注:設定1和設定2等價,這種方法需要util標籤,要引入util的xsd:

http://www.springframework.org/schema/util

http://www.springframework.org/schema/util/spring-util-3.0.xsd"

value.properties

key=1

ValueDemo.java

@Component
public class ValueDemo {
    @Value("#{configProperties['key']}")
    private String value;

    public String getValue() {
        return value;
    }
}

2.2 @Value(“${key}”)使用

2.2.1 組態檔

1、在2.1.1的組態檔基礎上增加:

<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer">
    <property name="properties" ref="configProperties"/>
</bean>

2、直接指定組態檔,完整的設定:

<bean id="appProperty"
          class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="locations">
        <array>
            <value>classpath:value.properties</value>
        </array>
    </property>
</bean>

ValueDemo.java

@Component
public class ValueDemo {
    @Value("${key}")
    private String value;

    public String getValue() {
        return value;
    }
}

到此這篇關於Spring-@value用法詳解的文章就介紹到這了,更多相關Spring @value內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com