SpringBoot02_配置文件三种读取配置文件方式
Posted TZ845195485
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot02_配置文件三种读取配置文件方式相关的知识,希望对你有一定的参考价值。
①. yaml配置文件
-
①. YAML全称是 YAML Ain`t Markup Language。YAML是一种直观能够被电脑识别的数据数据序列化格式,并且容易被人阅读,容易和脚本语言交互的,可以被支持YAML库的不同的编程语言程序导入,比如:C/C++ ,JAVA ,php等。YAML文件扩展名可以使用.yml 或者 .yaml
-
②. YAML的基本语法
- 大小写敏感,key: value;kv之间有空格
- 数据值前边必须有空格,作为分隔符
- 使用缩进表示层级关系(缩进的空格数目不重要,只要保证同层级的元素左侧对齐即可)
- 缩进时不允许使用Tab键,只允许使用空格(各个系统Tab对应的空格数目可能不同,导致层级混乱)
- #表示注释,从这个字符一直到行尾,都会被解析器忽略
- ③. 数据类型
# (1). 字面量:单个的、不可再分的值。date、boolean、string、number、null
k: v
# (2). 对象:键值对的集合。map、hash、set、object
行内写法: k: {k1:v1,k2:v2,k3:v3}
#或
k:
k1: v1
k2: v2
k3: v3
# (3). 数组:一组按次序排列的值。array、list、queue
行内写法: k: [v1,v2,v3]
#或者
k:
- v1
- v2
- v3
- ④. yaml代码展示
server:
port: 8888
mycar:
branch: "雅阁"
price: "20w"
name: abc
#1.对象(map)键值对的集合
person:
name: TANGZHI #${name}
age: 24
birthday: 2021/05/24 20:12:33
address:
- beijing
- shanghai
# List集合
animal:
- 猴子
大象
- 青蛙
# Map集合
score:
english:
first: 30
second: 40
third: 50
math:
100
# Set集合
salary:
- 1000
- 2000
#行内写法
address2: [beijing2,shanghai2]
#3.纯量
msg1: 'hello \\n word' # 这里正常输出
msg2: "hello \\n word" # 这里会带上转行符号
#spring:
# banner:
# image:
# location: classpath:bug.png
- ④. 自定义的类和配置文件绑定一般没有提示。若要提示,添加如下依赖:
在application.yaml写东西会有提示
<!--这个注解打开后,我们使用@ConfigurationProperties注解最上面不会有警告-->
<dependency>
<groupId> org.springframework.boot </groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<!--不传递依赖-->
<optional>true</optional>
</dependency>
<!--这个插件,可以将应用打包成一个可执行的jar包-->
<build>
<plugins>
<!-- 下面插件作用是工程打包时,不将spring-boot-configuration-
processor打进包内,让其只在编码的时候有用 -->
<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>
②. 读取配置的三种方式
-
①. 使用@Value(“${server.port}”)
-
②. 注入Environment
-
③. ConfigurationProperties(prefix=``)
-
④. 代码展示
server:
port: 8888
mycar:
branch: "雅阁"
price: "20w"
name: abc
#1.对象(map)键值对的集合
person:
name: TANGZHI #${name}
age: 24
birthday: 2021/05/24 20:12:33
address:
- beijing
- shanghai
# List集合
animal:
- 猴子
大象
- 青蛙
# Map集合
score:
english:
first: 30
second: 40
third: 50
math:
100
# Set集合
salary:
- 1000
- 2000
#行内写法
address2: [beijing2,shanghai2]
#3.纯量
msg1: 'hello \\n word' # 这里正常输出
msg2: "hello \\n word" # 这里会带上转行符号
#spring:
# banner:
# image:
# location: classpath:bug.png
@Data
@AllArgsConstructor
@NoArgsConstructor
// 第一种方式,使用Component+ConfigurationProperties注解的方式加载yaml文件
@Component
@ConfigurationProperties(prefix = "person")
public class Person {
private String name;
private Integer age;
private Date birthday;
private String[]address;
private List<String> animal;
private Map<String,Object> score;
private Set<Double> salary;
}
@Slf4j
@RestController
public class myController {
/*(1).通过@value注解从配置文件中获取值*/
@Value("${msg1}")
private String msg1;
@Value("${msg2}")
private String msg2;
/*2.Environment*/
@Autowired
private Environment env;
@Autowired
Car car;
//(3). 通过ConfigurationProperties注解进行绑定
@Autowired
Person person;
@GetMapping("/car")
public Car getMyCar(){
log.info("***********");
log.info("***********");
return car;
}
@GetMapping("/person")
public Person getPerson(){
//msg1:hello \\n word
System.out.println("msg1:"+msg1);
/**
* msg2:hello
// word
*/
System.out.println("msg2:"+msg2);
String address = env.getProperty("address2[0]");
//beijing2
System.out.println(address);
return person;
}
}
以上是关于SpringBoot02_配置文件三种读取配置文件方式的主要内容,如果未能解决你的问题,请参考以下文章
springBoot 读取yml 配置文件的三种方式 (包含以及非component下)