码迷,mamicode.com
首页 > 编程语言 > 详细

SpringBoot读取配置文件(从classpath/file读取yml/properties文件)

时间:2018-05-09 16:03:07      阅读:2686      评论:0      收藏:0      [点我收藏+]

标签:ace   data-   static   hold   代码   data   strong   AC   ati   

一、读取properties文件
使用配置项@PropertySource
 
二、读取yml文件
启动类添加下面代码:
 
@Bean
public static PropertySourcesPlaceholderConfigurer properties() {
    PropertySourcesPlaceholderConfigurer configurer = new PropertySourcesPlaceholderConfigurer();
    YamlPropertiesFactoryBean yaml = new YamlPropertiesFactoryBean();
    yaml.setResources(new FileSystemResource("/dir/application.yml"));//File引入
    //yaml.setResources(new ClassPathResource("application.yml"));//class引入
    configurer.setProperties(yaml.getObject());
    return configurer;
}
 

 

1、引入多个配置文件:yaml.setResources(new ClassPathResource("application1.yml"), new ClassPathResource("application2.yml"));
 

 

  

SpringBoot读取配置文件(从classpath/file读取yml/properties文件)

标签:ace   data-   static   hold   代码   data   strong   AC   ati   

原文地址:https://www.cnblogs.com/gossip/p/9014616.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!