@PropertySource加载指定的配置文件
@PropertySource(value = {"classpath:person.properties"})//加载person.properties配置文件
@Component
@ConfigurationProperties(prefix = "person")
//@Validated
public class Person {
}
@PropertySource加载指定的配置文件
@PropertySource(value = {"classpath:person.properties"})//加载person.properties配置文件
@Component
@ConfigurationProperties(prefix = "person")
//@Validated
public class Person {
}