Spring 獲取配置檔案.properties的數值
阿新 • • 發佈:2018-12-26
1、在spring的xml配置檔案中獲取配置檔案變數值
在applicationContext.xml中載入peiz配置檔案,加入程式碼如下:
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <list> <value>classpath:jdbc.properties</value> </list> </property> </bean>
使用方式:"${key}",舉例如下:
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close"> <property name="driverClassName" value="${jdbc.driverClassName}" /> <property name="url" value="${jdbc.url}" /> <property name="username" value="${jdbc.username}" /> <property name="password" value="${jdbc.password}" /> </bean>
2、在Controller中獲取.properties中的變數值,可以使用"@Value("${key}")" 來獲取數值,但是其中會出現@Value獲取不到值的狀況。
原因: 只在applicationContext中添加了掃描,沒有在SpringMVC對應的配置檔案中掃描。
applicationContext載入的是父容器,,父容器在專案啟動的時候就被載入了。SpringMVC對應的配置檔案載入的是子容器,子容器可以訪問父容器的物件,但是不能訪問載入的配置檔案。所以,如果想在SpringMVC中使用載入的配置檔案,需要在SpringMVC對應的配置檔案中新增相應的配置即可。
解決方案:
1、spring-mvc.xml中加入載入.properties的載入配置語句。舉例如下
<!-- 載入配置檔案 -->
<context:property-placeholder location="classpath:httpUrl.properties"/>
2、在Controller中取值
@Value("${getAllManufacturer}")
private String getAllManufacturerUrl;
3、在普通的Class檔案中獲取變數值
@Component
public class Constant {
@Value("${getToken}")
private String tokenUrl;
}
4、注意:如果class的靜態變數值(static)是獲取不到獲取,解決舉例如下:
@Component
public class Constant {
private static String tokenUrl;
private static String username;
private static String password;
@Value("${getToken}")
private void setTokenUrl(String tokenUrl) {
this.tokenUrl = tokenUrl;
}
@Value("${login.username}")
private void setUsername(String username) {
this.username = username;
}
@Value("${login.password}")
private void setPassword(String password) {
this.password = password;
}
}