Spring中@PropertySouce注解的使用

@PropertySource注解可以从properties文件中,获取对应的key-value值,将其赋予变量;

1.一个典型用法:

首先有一个config.properties文件内容如下:

demo.url = 1.2.3.4

demo.db = helloTest

下面是java程序:

 

[python]  view plain  copy
 
  1. @Configuration  
  2. @PropertySource("classpath:config.properties")  
  3. public class AppConfigMongoDB {  
  4.   
  5.     //1.2.3.4  
  6.     @Value("${demo.url}")  
  7.     private String mongodbUrl;  
  8.   
  9.     //hello  
  10.     @Value("${demo.db}")  
  11.     private String defaultDb;  
  12. }  


2.通过运行环境spring中的Environment设置:

 

[python]  view plain  copy
 
  1. @Configuration  
  2. @ComponentScan(basePackages = { "com.mkyong.*" })  
  3. @PropertySource("classpath:config.properties")  
  4. public class AppConfigMongoDB {  
  5.  
  6.     @Autowired  
  7.     private Environment env;  
  8.  
  9.     @Bean  
  10.     public MongoTemplate mongoTemplate() throws Exception {  
  11.   
  12.         String mongodbUrl = env.getProperty("mongodb.url");  
  13.         String defaultDb = env.getProperty("mongodb.db");  
  14. }  


3.OGNL解析:

 

[python]  view plain  copy
 
  1. @Configuration  
  2. @PropertySource("file:${app.home}/app.properties")  
  3. public class AppConfig {  
  4.     @Autowired  
  5.     Environment env;  
  6. }  


上述中的app.home可以在启动时设置,如下:

 


System.setProperty("app.home", "test");

java -jar -Dapp.home="/home/mkyon/test" example.jar

4.同时包含多个文件:

 

 


@PropertySource({
	"classpath:config.properties",
	"classpath:db.properties" //if same key, this will 'win'
})

5.Spring4中对这个注解进行了功能增强,增加了@PropertySources注解,相当于其父标签,下面可以包括多个子PropertySource注解,示例如下:

 

 


@PropertySources({
	@PropertySource("classpath:config.properties"),
	@PropertySource("classpath:db.properties")
})

6.当扫描的文件不存在时,可以通过设置ignoreResourceNotFound属性进行忽略错误。


版权声明:本文为Architect_CSDN原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。