Spring在基於java的配置中使用prop屬性

yingxian_Fei發表於2017-04-16

本文講述spring開發時在基於java的配置中使用properties配置檔案中的配置屬性。

1、屬性配置檔案

本文將需要讀取的屬性配置檔案放到了cn.hifei.spring.demo.base的包下,名稱為app.properties,屬性檔案中有一個屬性定義如下:

value=hello,world

我們在java的配置中讀取該配置並列印測試;

2、java配置程式碼

package cn.hifei.spring.demo.base;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
import org.springframework.context.support.PropertySourcesPlaceholderConfigurer;

@Configuration
@PropertySource("classpath:cn/hifei/spring/demo/base/app.properties")
public class BaseConfiguration {
	
	@Bean
	public static PropertySourcesPlaceholderConfigurer placeholerConfigurer()  {
		return new PropertySourcesPlaceholderConfigurer();
	}
	
	@Bean
	public String test(@Value("${value}")String value) {
		System.out.print("================value="+value);
		return value;
	}
}
主要有幾部分知識點:

  (1)、在配置類上使用@PropertySource註解宣告配置檔案的檔案存放路徑;

  (2)、由於本例子使用佔位符的方式讀取配置檔案,因此我們需要配置一個PropertySourcesPlaceholderConfigurer的bean;

  (3)、是有那個@Value(${value})註解讀取屬性配置檔案中的值;

相關文章