您好,登錄后才能下訂單哦!
這篇文章主要介紹“Spring @value怎么使用”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“Spring @value怎么使用”文章能幫助大家解決問題。
為了簡化讀取properties文件中的配置值,spring支持@value注解的方式來獲取,這種方式大大簡化了項目配置,提高業務中的靈活性。
1、@Value(“#{configProperties[‘key’]}”)
2、@Value(“${key}”)
配置方法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; } }
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怎么使用”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。