路还在继续,梦还在期许
1、文件类型
1.1、properties
同以前的properties用法相同,SpringBoot使用配置绑定可以直接使用properties内的键和值,不做演示。
1.2、yaml
1、简介
YAML 是 “YAML Ain’t Markup Language”(YAML 不是一种标记语言)的递归缩写。
在开发的这种语言时,YAML 的意思其实是:“Yet Another Markup Language”(仍是一种标记语言)。
非常适合用来做以数据为中心的配置文件。
2、基本语法
- key: value;k-v之间有空格
- 大小写敏感
- 使用缩进表示层级关系
- 缩进不允许使用tab,只允许空格
- 缩进的空格数不重要,只要相同层级的元素左对齐即可
- '#'表示注释
- 字符串无需加引号,如果要加,单引号表示一段字符串双引号表示字符串内容有转义\n就换行
3、数据类型
字面量:单个的、不可再分的值:date、boolean、string、number、null
k: v
对象:键值对的集合:map、hash、set、object
行内写法: k: {k1:v1,k2:v2,k3:v3}
#或
k:
k1: v1
k2: v2
k3: v3
数组:一组按次序排列的值:array、list、queue
行内写法: k: [v1,v2,v3]
#或者
k:
- v1
- v2
- v3
4、示例
Person 类
@Data
@ToString
@NoArgsConstructor
@Component
@ConfigurationProperties(prefix = "person")
public class Person {
private String userName;
private Boolean boss;
private Date birth;
private Integer age;
private Pet pet;
private String[] interests;
private List<String> animal;
private Map<String, Object> score;
private Set<Double> salarys;
private Map<String, List<Pet>> allPets;
}
Pet 类
@Data
@NoArgsConstructor
@AllArgsConstructor
public class Pet {
private String name;
private Double weight;
}
编写yaml配置文件
# yaml表示以上对象
person:
userName: zhangsan
boss: true
birth: 2022/10/27
age: 18
pet:
name: tomcat
weight: 23.2
interests: [ 足球,篮球 ]
animal: [ jerry,mario ]
score:
english: { first: 20,second: 30,third: 40 }
math: { 131,141,151 }
chinese: { first: 128,second: 138 }
salarys: [ 3999.11,4999.22,5999,33 ]
allPets:
sick:
- { name: tom, weight: 40 }
- { name: jerry,weight: 46 }
health: [ { name: mario,weight: 47 } ]
2、配置注释处理器
2.1、使用注释处理器
自定义的类和配置文件绑定一般没有提示,引入配置注释处理器依赖。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
2.2、打包跳过注释处理器
spring boot 打包的时候,跳过配置处理器,这个功能有与没有对项目运行都没有影响,有的话可以减少一个jar包,减少一点加载时间。
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>