spring-boot-route(二)读取配置文件的几种方式

Spring Boot提供了两种格式的配置文件,分别是propertiesyml。Spring Boot最大的特色就是自动化配置,若是咱们想修改自动化配置的默认值,就能够经过配置文件来指定本身服务器相关的参数。java

配置文件集约管理了配置信息,若是把配置参数写到Java代码中,维护起来很是不方便,若是使用配置文件,咱们能够统一管理,统一修改。我比较推荐使用yml格式的配置文件,YAML是专门用来写配置文件的语言,一般以yml为后缀,它的结构很是清晰,更易于阅读。git

将自定义的配置写在配置文件中后,若是想要在java代码中使用配置,这时候就须要读取配置文件,读取配置文件的方式有三种,咱们挨个介绍一下若是进行读取!github

第一种:使用@Value注解读取

第一步:在配置文件中增长加入如下配置spring

config:
  name: Java旅途
  desc: spring-boot-route

第二部:新建Java类读取配置信息数组

@RestController
public class GetValue {

    @Value("${config.name}")
    private String name;

    @Value("${config.desc}")
    private String desc;

    @GetMapping("getValue")
    public String getValue(){
        return "name="+name+";desc="+desc;
    }
}

@Value注解使用简单,适合单个参数的注入。服务器

第二种:使用@ConfigurationProperties读取

@ConfigurationProperties与@Value相比,更加适合读取数组类型的参数。微信

1. 获取单个对象

第一步:在yml文件中新建对象类型的配置信息app

configs:
  config:
    name: Java旅途
    desc: spring-boot-route

第二步:新建实体映射配置信息ide

@Component
@ConfigurationProperties(prefix = "configs.config")
@Data
public class Config {

    private String name;
    private String desc;
}

第三步:新建类测试是否获取到参数spring-boot

@RestController
public class GetConfigurationProperties {

    @Autowired
    private Config config;

    @GetMapping("/getConfig")
    public String getConfig(){
        return config.getName()+";"+config.getDesc();
    }
}

2. 获取对象集合

第一步:在yml文件中新建数组类型的参数

configs:
  config:
    - name: Java旅途
      desc: spring-boot-route
    - name: javatrip
      desc: spring-boot-yml

第二步:新建实体映射配置信息

@Component
@ConfigurationProperties(prefix = "configarr")
@Data
public class Configs {

    private List<Config> config = new ArrayList<>();

    @Data
    public static class Config{

        private String name;
        private String desc;
    }
}

第三步:新建测试类获取参数

@RestController
public class GetConfigurationProperties {

    @Autowired
    private Configs configs;
    
    @GetMapping("/getConfigs")
    public String getConfigs(){

        String content = "";
        List<Configs.Config> configList = configs.getConfig();
        Map<String,Object> map = new HashMap<>();
        for (Configs.Config bean : configList){
            content += bean.getName()+";"+bean.getDesc()+",";
        }
        return content;
    }
}

除了上面介绍的两种方式以外,还能够经过Spring Boot上下文的环境变量来读取配置文件信息,不过上面两种方式已经彻底能够知足全部需求,这里就再也不进行介绍了。

思考与扩展

若是多个配置文件具备相同的配置信息,那么如何读取特定的配置文件信息呢

配置文件具备优先级,通常状况下,yml文件的优先级高于properties,这样就会致使properties的配置信息后加载,最后读取的时候就会properties的配置信息的优先级会更高。

上面介绍的两种读取配置文件的方式能够和另外一个注解配合使用,@PropertySource经常使用的三个属性,一个是value用于指定配置文件,另外一个是encoding用于指定编码,最后一个是factory,用于指定解析工厂。

这里须要注意一下:@PropertySource默认只会加载properties格式的文件,也就是咱们若是指定了yml类型的文件是不会生效的,这时候就须要咱们重写解析工厂。

先看看下默认的解析工厂源码:

public class DefaultPropertySourceFactory implements PropertySourceFactory {
    public DefaultPropertySourceFactory() {
    }

    public PropertySource<?> createPropertySource(@Nullable String name, EncodedResource resource) throws IOException {
        return name != null ? new ResourcePropertySource(name, resource) : new ResourcePropertySource(resource);
    }
}

自定义解析工厂,实现PropertySourceFactory

public class YmlConfigFactory extends DefaultPropertySourceFactory {
    @Override
    public PropertySource<?> createPropertySource(String name, EncodedResource resource) throws IOException {
        String sourceName = name != null ? name : resource.getResource().getFilename();
        if (!resource.getResource().exists()) {
            return new PropertiesPropertySource(sourceName, new Properties());
        } else if (sourceName.endsWith(".yml") || sourceName.endsWith(".yaml")) {
            Properties propertiesFromYaml = loadYml(resource);
            return new PropertiesPropertySource(sourceName, propertiesFromYaml);
        } else {
            return super.createPropertySource(name, resource);
        }
    }

    private Properties loadYml(EncodedResource resource) throws IOException {
        YamlPropertiesFactoryBean factory = new YamlPropertiesFactoryBean();
        factory.setResources(resource.getResource());
        factory.afterPropertiesSet();
        return factory.getObject();
    }
}

第一步:新建两个配置文件,test.yml和test.properties,增长如下配置信息

spring:
  value: javatrip123
  remark: javatrip123
spring:
  value: javatrip123
  remark: javatrip123

第二步:指定配置文件映射配置文件内容

@Data
@Configuration
@PropertySource(value = {"classpath:test.yml"},encoding = "gbk")
@ConfigurationProperties(prefix = "spring")
public class Spring {

    private String value;
    private String remark;
}

第三步:新建类进行测试

@RestController
public class GetSource {

    @Autowired
    private Spring spring;

    @GetMapping("get")
    public String getSource(){
        return spring.getRemark()+";"+spring.getValue();
    }
}

此是spring-boot-route系列的第二篇文章,这个系列的文章都比较简单,主要目的就是为了帮助初次接触Spring Boot 的同窗有一个系统的认识。本文已收录至个人github,欢迎各位小伙伴star

githubhttps://github.com/binzh303/s...

点关注、不迷路

若是以为文章不错,欢迎关注点赞收藏,大家的支持是我创做的动力,感谢你们。

若是文章写的有问题,请不要吝啬,欢迎留言指出,我会及时核查修改。

若是你还想更加深刻的了解我,能够微信搜索「Java旅途」进行关注。回复「1024」便可得到学习视频及精美电子书。天天7:30准时推送技术文章,让你的上班路不在孤独,并且每个月还有送书活动,助你提高硬实力!

相关文章
相关标签/搜索