多项选择题
A.environment-specific 属性源是一种反面模式,Spring 不支持这种属性源
B.在提供给属性源的字符串中使用一个占位符,例如:@PropertySource("classpath:/com/acme/config/app-${ENV}.properties“)
C.使用@PropertySource 注解中的"env"属性来指定要加载的文件,例如@PropertySource(env="dev",value="classpath:/com/acme/config/app-${env}.properties")
D.使用@PropertySource 来注解一个用@Profile 注解的@Configuration 类