SpringBoot2.0---------------7、SpringBoot配置文件

1. Springboot核心功能

SpringBoot的核心功能如下:
在这里插入图片描述

2. 配置文件

配置文件类型:
1、properties
2、yaml
Springboot兼容以上两种配置文件,yaml非常适合用来做以数据为中心的配置文件

2.1 yaml基本语法

1)key: value,键值之间有空格
2)大小写敏感
3)使用缩进表示层级关系
4)缩进不允许使用Tab,只允许空格
5)缩进的空格数不重要,只要相同层级的元素左对齐即可
6)‘#’ 表示注释
7)字符串无需加引号,如果要加,''与""表示字符串内容,会被转义/不转义

2.2 yaml数据类型

字面量:单个的、不可再分的值。date、boolean、string、number、null

k: v

对象:键值对的集合。map、hash、set、object 。如下面格式所示,表示对象k中有三个键值对的两种写法

行内写法:  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]
#或者
k:
 - v1
 - v2
 - v3

示例:

1)与properties配置文件的绑定方式:使用@ConfigurationProperties注解,代码如下
在这里插入图片描述
在这里插入图片描述


2)yaml配置文件:先创建application.yml或application.yaml配置文件;将配置类加入容器中(使用@Component),然后绑定配置文件@ConfigurationProperties(prefix = “person”),当配置文件中使用person.xxx是就会进行绑定;配置类person代码如下:

@ConfigurationProperties(prefix = "person")
@Component
@Data
@ToString
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;
}

配置类Person中使用的Pet类如下:

@Data
@ToString
public class Pet {
    private String name;
    private Double weight;
}

2)对Person类进行配置,yaml配置文件写法如下:

person:
  userName: 'zhangsan \n 李四'
  # 单引号会将 \n作为字符串输出  双引号会将 \n 作为换行输出
  # 双引号不会转义,单引号会转义
  boss: true
  birth: 2019/12/9
  age: 18
  #interests: [篮球,足球]
  interests:
    - 篮球
    - 足球
  animal: [,]
  #score: {english:89,math:90}
  score:
    english: 89
    math: 90
  salarys:
    - 9999
    - 7897
  pet:
    name: aaa
    weight: 5.99
  allPets:
    sick:
      - {name: aaa,weight: 5.99}
      - name: bbb
        weight: 6.99
    health: [{name: ccc,weight: 7.88},{name: ddd,weight: 10}]

Springboot配置文件优先推荐使用yaml,因为yaml配置文件层次清晰。当yaml和properties配置文件同时使用且都配置了同一个属性时,按照加载的优先级,同一个属性值会使用properties配置文件中的配置,如图:

在这里插入图片描述
在这里插入图片描述
使用配置后的输出结果中userName属性和age属性的属性值为properties中的值,如图:
在这里插入图片描述


2.2 配置提示

自己写的类中会提示SpringBoot 配置的注释处理器没有在类中找到,解决方法参考官方文档 Configuring the Annotation Processor引入对应依赖即可
在这里插入图片描述

1)添加配置处理器:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-configuration-processor</artifactId>
    <optional>true</optional>
</dependency>

由于使用配置处理器只是方便开发,对于开发的业务并无影响,因此在打包时不要把配置处理器打包进去,配置 spring-boot-maven-plugin 以防止重新打包目标将依赖项添加到 fat 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>

配置打包时不包含配置处理器

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值