spring-boot-route(二)读取配置文件的几种方式
2021-03-18 21:27
标签:else ext creat 使用配置 映射配置文件 gets cto 方便 sse 配置文件集约管理了配置信息,如果把配置参数写到Java代码中,维护起来非常不方便,如果使用配置文件,我们可以统一管理,统一修改。我比较推荐使用 将自定义的配置写在配置文件中后,如果想要在java代码中使用配置,这时候就需要读取配置文件,读取配置文件的方式有三种,我们挨个介绍一下如果进行读取! 第一步:在配置文件中增加加入以下配置 第二部:新建Java类读取配置信息 @Value注解使用简单,适合单个参数的注入。 @ConfigurationProperties与@Value相比,更加适合读取数组类型的参数。 第一步:在yml文件中新建对象类型的配置信息 第二步:新建实体映射配置信息 第三步:新建类测试是否获取到参数 第一步:在yml文件中新建数组类型的参数 第二步:新建实体映射配置信息 第三步:新建测试类获取参数 除了上面介绍的两种方式之外,还可以通过Spring Boot上下文的环境变量来读取配置文件信息,不过上面两种方式已经完全可以满足所有需求,这里就不再进行介绍了。 如果多个配置文件具有相同的配置信息,那么如何读取特定的配置文件信息呢? 配置文件具有优先级,一般情况下,yml文件的优先级高于properties,这样就会导致properties的配置信息后加载,最后读取的时候就会properties的配置信息的优先级会更高。 上面介绍的两种读取配置文件的方式可以和另一个注解配合使用,@PropertySource常用的三个属性,一个是 这里需要注意一下:@PropertySource默认只会加载 先看看下默认的解析工厂源码: 自定义解析工厂,实现PropertySourceFactory 第一步:新建两个配置文件,test.yml和test.properties,增加以下配置信息 第二步:指定配置文件映射配置文件内容 第三步:新建类进行测试 此是spring-boot-route系列的第二篇文章,这个系列的文章都比较简单,主要目的就是为了帮助初次接触Spring Boot 的同学有一个系统的认识。本文已收录至我的github,欢迎各位小伙伴 github:https://github.com/binzh303/spring-boot-route 如果觉得文章不错,欢迎关注、点赞、收藏,你们的支持是我创作的动力,感谢大家。 如果文章写的有问题,请不要吝啬,欢迎留言指出,我会及时核查修改。 如果你还想更加深入的了解我,可以微信搜索「Java旅途」进行关注。回复「1024」即可获得学习视频及精美电子书。每天7:30准时推送技术文章,让你的上班路不在孤独,而且每月还有送书活动,助你提升硬实力! spring-boot-route(二)读取配置文件的几种方式 标签:else ext creat 使用配置 映射配置文件 gets cto 方便 sse 原文地址:https://blog.51cto.com/14820531/2539845properties
和 yml
。Spring Boot最大的特点就是自动化配置,如果我们想修改自动化配置的默认值,就可以通过配置文件来指定自己服务器相关的参数。
yml
格式的配置文件,YAML
是专门用来写配置文件的语言,通常以yml为后缀,它的结构非常清晰,更易于阅读。第一种:使用@Value注解读取
config:
name: Java旅途
desc: spring-boot-route
@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;
}
}
第二种:使用@ConfigurationProperties读取
1. 获取单个对象
configs:
config:
name: Java旅途
desc: spring-boot-route
@Component
@ConfigurationProperties(prefix = "configs.config")
@Data
public class Config {
private String name;
private String desc;
}
@RestController
public class GetConfigurationProperties {
@Autowired
private Config config;
@GetMapping("/getConfig")
public String getConfig(){
return config.getName()+";"+config.getDesc();
}
}
2. 获取对象集合
configs:
config:
- name: Java旅途
desc: spring-boot-route
- name: javatrip
desc: spring-boot-yml
@Component
@ConfigurationProperties(prefix = "configarr")
@Data
public class Configs {
private List
@RestController
public class GetConfigurationProperties {
@Autowired
private Configs configs;
@GetMapping("/getConfigs")
public String getConfigs(){
String content = "";
List
思考与扩展
value
用于指定配置文件,另一个是encoding
用于指定编码,最后一个是factory
,用于指定解析工厂。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);
}
}
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();
}
}
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();
}
}
star
!点关注、不迷路
文章标题:spring-boot-route(二)读取配置文件的几种方式
文章链接:http://soscw.com/index.php/essay/65951.html