[SpringBoot] @PropertySource 로 yaml 파일 읽기
ITWeb/개발일반 2019. 9. 16. 13:34아래 문서에 보면 설명이 잘 나와 있습니다.
기록 하는 차원에서 남겨 봅니다.
1. If you use “Starters”, SnakeYAML is automatically provided by spring-boot-starter.
2. The YamlPropertySourceLoader class can be used to expose YAML as a PropertySource in the Spring Environment. Doing so lets you use the @Value annotation with placeholders syntax to access YAML properties.
SnakeYAML 이 기본 탑재
@Value 로 접근 가능
@PropertySource("classpath:/application.yml")
...
@Value("${spring.profiles.active}")
private String profile;
@PropertySource("classpath:/application.yml")
...
@Value("${spring.profiles.active}")
private String profile;