SpringBoot(二)yaml文件

一. 给实体类对象赋值

        1.yaml配置文件中的属性可以批量注入到实体类文件中,与其中的对象一一对应

        2.松散绑定

                (1)何为松散绑定?

yaml文件下命名

class文件下命名

first_name firstName
                        命名不太规范,包括大小写等,都不会影响赋值,这就是松耦合

                (2)绑定赋值

class
@Component
//组件
@ConfigurationProperties(prefix = "xxx")
//与yaml配置文件内容绑定
public class pet {
    private String name;
}
yaml
xxx:
    name: hello
test
@Autowiredprivent pet

你可能感兴趣的:(SpringBoot,java,yaml)