spring 读取yaml配置文件

 

从Spring框架4.1.0增长了对YAML的支持,Spring框架4.1.0 maven POM具备Snakeyaml依赖性  。html

您能够在Spring Boot应用中使用两种方式加载YAML:spring

一、使用Java配置类app

复制代码
 @Bean
  public static PropertySourcesPlaceholderConfigurer properties() {
      PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer = new PropertySourcesPlaceholderConfigurer();
      YamlPropertiesFactoryBean yaml = new YamlPropertiesFactoryBean();
      yaml.setResources(new ClassPathResource("appConfig.yml");
      propertySourcesPlaceholderConfigurer.setProperties(yaml.getObject());
      return propertySourcesPlaceholderConfigurer;
  }
复制代码

二、使用XML Bean配置框架

复制代码
<context:annotation-config/>
 
<bean id="yamlProperties" class="org.springframework.beans.factory.config.YamlPropertiesFactoryBean">
    <property name="resources" value="classpath:appConfig.yml"/>
</bean>
 
<context:property-placeholder properties-ref="yamlProperties"/>
复制代码

 

转自:https://www.cnblogs.com/EasonJim/p/7583837.htmlmaven

相关文章
相关标签/搜索