https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#boot-features-external-config 사용할 수 있는 외부 설정
- properties
- YAML
- 환경 변수
- 커맨드 라인 아규먼트
프로퍼티 우선 순위
- 유저 홈 디렉토리에 있는 spring-boot-dev-tools.properties
- 테스트에 있는 @TestPropertySource
- @SpringBootTest 애노테이션의 properties 애트리뷰트
- 커맨드 라인 아규먼트
- SPRING_APPLICATION_JSON (환경 변수 또는 시스템 프로티) 에 들어있는 프로퍼티
- ServletConfig 파라미터
- ServletContext 파라미터
- java:comp/env JNDI 애트리뷰트
- System.getProperties() 자바 시스템 프로퍼티
- OS 환경 변수
- RandomValuePropertySource
- JAR 밖에 있는 특정 프로파일용 application properties
- JAR 안에 있는 특정 프로파일용 application properties
- JAR 밖에 있는 application properties
- JAR 안에 있는 application properties
- @PropertySource
- 기본 프로퍼티 (SpringApplication.setDefaultProperties)
application.properties 우선 순위 (높은게 낮은걸 덮어 씁니다.)
- file:./config/
- file:./
- classpath:/config/
- classpath:/
Spring Boot 프로퍼티 우선순위 (높은 순서부터)
- 명령행 인수 (Command Line Arguments)
java -jar app.jar --server.port=9000
- 자바 시스템 프로퍼티 (Java System Properties)
java -Dserver.port=9000 -jar app.jar
- OS 환경 변수 (Operating System Environment Variables)
SERVER_PORT=9000 java -jar app.jar
- Profile 별 외부 설정 파일 (application-{profile}.properties/.yml)
- 애플리케이션 디렉토리 외부의
/config
디렉토리 - 애플리케이션 디렉토리 외부
- 애플리케이션 내부의
/config
패키지 - 애플리케이션 루트
- 애플리케이션 디렉토리 외부의
- 기본 외부 설정 파일 (application.properties/.yml)
- 위와 동일한 위치 순서 적용
- @PropertySource 애노테이션으로 지정한 파일
@PropertySource("classpath:custom.properties")
- 애플리케이션 기본 설정 (Default Properties)
SpringApplication.setDefaultProperties()
로 설정한 값
주요 특징
- 상위 우선순위의 프로퍼티가 하위 우선순위의 프로퍼티를 오버라이드합니다.
- 동일한 프로퍼티가 여러 소스에 존재할 경우, 가장 높은 우선순위를 가진 값이 사용됩니다.
- YAML 파일과 properties 파일은 동일한 우선순위를 갖습니다.
- Profile 별 설정이 기본 설정보다 우선합니다.
이 우선순위 체계는 개발, 테스트, 스테이징, 프로덕션 등 다양한 환경에서 애플리케이션 설정을 유연하게 관리할 수 있게 해줍니다.