三、SpringBoot配置文件

三、SpringBoot配置文件

1、yaml配置文件
  • YAML是"YAML ain’t Markup language" 不是标记语言的标记语言
  • 非常适合做以数据为中心的配置文件
  • 基本语法
    • key: value : key-value 之间有空格
    • 大小写敏感
    • 使用缩进表示层级关系
    • 缩进的空格数不重要,只要相同层级的元素左对齐即可
    • # 表示注释
    • 字符串无需添加引号,如果要添加,"" 双引号不会转义,’'单引号会转义
2、yaml使用的示例
  • Person.java

    @Component//加入到容器中去
    @ConfigurationProperties(prefix = "person")
    @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;
    }
    
  • Pet.java

    @Data
    @ToString
    public class Pet {
        private String name;
        private Double weight;
    }
    
  • application.yaml示例

    person:
      userName: 张三
      boss: true
      birth: 2020/10/31
      age: 1
      pet:
        name: 花花
        weight: 37
      interests:
        - 篮球
        - 游泳
      animal: [jerry,tom]
      score:
        english: 78
        math: 79
      salarys:
        - 9999
        - 8888
      allPets:
        sick:
          - {name: tom,weight: 34}
          - {name: lisi,weight: 56}
    #      - pet:
    #          name: 阿猫
    #          weight: 23 错误的
        health: [{name: jerry,weight: 55}]
    
3、编写提示以及去除无用插件
  • 只需要在pom.xml文件中配置以下内容即可

    <!--        可以在编写yaml配置的时候存在提示-->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-configuration-processor</artifactId>
                <optional>true</optional>
            </dependency>
        </dependencies>
        
        <build>
            <plugins>
    <!--            在项目打包的时候可以去除没有必要的插件-->
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <configuration>
                        <proc>none</proc>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值