Я не могу установить активный профиль из файла application.yml в приложении Spring MVC.
Мой application.yml
spring:
profiles:
active: dev
И я загружаю Yaml, как показано ниже:
@Bean
public static PropertySourcesPlaceholderConfigurer properties() {
PropertySourcesPlaceholderConfigurer
propertySourcesPlaceholderConfigurer = new
PropertySourcesPlaceholderConfigurer();
YamlPropertiesFactoryBean yaml = new YamlPropertiesFactoryBean();
yaml.setResources(new ClassPathResource("application.yml"));
propertySourcesPlaceholderConfigurer.setProperties(yaml.getObject());
return propertySourcesPlaceholderConfigurer;
}
Моя среда Active Profile всегда пуста
StandardServletEnvironment {activeProfiles=[], defaultProfiles=[default]....
Пожалуйста, помогите