1、SpringBootApplication
SpringBootApplication注解包含了ComponentScan、SpringBootConfiguration两个注解,因为包含了ComponentScan,所以会自动扫描路径中的配置类,因为包含了SpringBootConfiguration,所以可以在添加SpringBootApplication注解的类中创建bean
2、SpringBootConfiguration
SpringBootConfiguration包含了Configuration,与Configuration的作用一样
3、ConfigurationProperties
ConfigurationProperties注解可以使读取文件时通过set方法读取,并且可以通过属性value或者prefix指定前缀
4、PropertySource
PropertySource指定读取的配置文件
5、PropertySources
PropertySources同时指定多个配置文件
原文地址:https://www.cnblogs.com/javasl/p/11827828.html
时间: 2024-10-15 00:38:02