yamlの文法を知っています〜

ここに画像の説明を挿入
今日のspringbootの設定ファイルで何を設定できるかを学びましょう

構成ファイル

SpringBootはグローバル構成ファイルを使用します。構成ファイル名は固定されています

  • Application.propertiesの
    構文構造:key = vaiue
  • Application.yaml
    構文構造:キー:スペース値

構成ファイルの役割:SpringBootは下部で自動的に構成するため、SpringBoot自動構成のデフォルト値を変更します。

ここに画像の説明を挿入

application.yamlでサポートされている構文はより強力ですが、スペースのフォーマット要件は非常に高いことがわかります。

yamlファイルで値を割り当てる

  • エンティティクラスを作成する
package com.lei.pojo;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

@Component
public class Dog {
    
    
    @Value("旺财")
    private  String name;
    @Value("3")
    private Integer age;


    public Dog() {
    
    
    }

    public Dog(String name, Integer age) {
    
    
        this.name = name;
        this.age = age;
    }

    public String getName() {
    
    
        return name;
    }

    public void setName(String name) {
    
    
        this.name = name;
    }

    public Integer getAge() {
    
    
        return age;
    }

    public void setAge(Integer age) {
    
    
        this.age = age;
    }

    @Override
    public String toString() {
    
    
        return "Dog{" +
                "name='" + name + '\'' +
                ", age=" + age +
                '}';
    }
}

package com.lei.pojo;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

import java.util.Date;
import java.util.List;
import java.util.Map;

@Component
@ConfigurationProperties(prefix = "person")
public class Person {
    
    
    private String name;
    private Integer age;
    private Boolean happy;
    private Date birth;
    private Map<String,Object> maps;
    private List<Object> lists;
    private Dog dog;

    public Person() {
    
    
    }

    public Person(String name, Integer age, Boolean happy, Date birth, Map<String, Object> maps, List<Object> lists, Dog dog) {
    
    
        this.name = name;
        this.age = age;
        this.happy = happy;
        this.birth = birth;
        this.maps = maps;
        this.lists = lists;
        this.dog = dog;
    }

    public String getName() {
    
    
        return name;
    }

    public void setName(String name) {
    
    
        this.name = name;
    }

    public Integer getAge() {
    
    
        return age;
    }

    public void setAge(Integer age) {
    
    
        this.age = age;
    }

    public Boolean getHappy() {
    
    
        return happy;
    }

    public void setHappy(Boolean happy) {
    
    
        this.happy = happy;
    }

    public Date getBirth() {
    
    
        return birth;
    }

    public void setBirth(Date birth) {
    
    
        this.birth = birth;
    }

    public Map<String, Object> getMaps() {
    
    
        return maps;
    }

    public void setMaps(Map<String, Object> maps) {
    
    
        this.maps = maps;
    }

    public List<Object> getLists() {
    
    
        return lists;
    }

    public void setLists(List<Object> lists) {
    
    
        this.lists = lists;
    }

    public Dog getDog() {
    
    
        return dog;
    }

    public void setDog(Dog dog) {
    
    
        this.dog = dog;
    }

    @Override
    public String toString() {
    
    
        return "Person{" +
                "name='" + name + '\'' +
                ", age=" + age +
                ", happy=" + happy +
                ", birth=" + birth +
                ", maps=" + maps +
                ", lists=" + lists +
                ", dog=" + dog +
                '}';
    }
}

@ConfigurationProperties(prefix =“ person”)
このアノテーションを介したyaml構成ファイルとのバインド

  • yamlの割り当て
person:
  name: lei
  age: 21
  happy: true
  birth: 1999/01/22
  maps: {
    
    k1: v1,k2: v2}
  lists:
    - music
    - girl
  dog:
    name: 旺财
    age: 3
  • テスト
package com.lei;

import com.lei.pojo.Dog;
import com.lei.pojo.Person;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest
class Springboot02ConfigApplicationTests {
    
    
    @Autowired
    private Person person;

    @Test
    void contextLoads() {
    
    
        System.out.println(person);
    }

}

ここに画像の説明を挿入

おすすめ

転載: blog.csdn.net/AIJXB/article/details/113525470