#key前有一个空格
#user对象实例
user:
age: 12
name: zhand
#user: {age: 12,name: sds}#行内写法
#数组
ab:
- 12 # -后空一格
- sd
#ab: [a,b] #行内写法
msg1: 'hello /n 1' #单引号忽略转义字符
msg2: "hello /n 2" #双引号识别转义字符
另外,可以在pom.xml里加入依赖,可以帮助编码yml文件(不添加也可以)
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>