ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • Spring Boot 외부설정 우선순위
    FrameWork/Spring Boot 2020. 3. 12. 18:50

    Spring Boot에서 외부설정으로는 아래와같이 사용 할수있다.

    • properties
    • YAML
    • 환경 변수
    • 커맨드 라인 Argument

     

    프로 퍼티 우선순위
    1. 유저 홈 디렉토리에 있는 spring-boot-dev-tools.properties
    2. 테스트에 있는 @TestPropertySource
    3. @SpringBootTest 애노테이션의 properties 애트리뷰트
    4. 커맨드 라인 아규먼트
    5. SPRING_APPLICATION_JSON (환경 변수 또는 시스템 프로티) 에 들어있는 프로퍼티
    6. ServletConfig 파라미터
    7. ServletContext 파라미터
    8. java:comp/env JNDI 애트리뷰트
    9. System.getProperties() 자바 시스템 프로퍼티
    10. OS 환경 변수
    11. RandomValuePropertySource
    12. JAR 밖에 있는 특정 프로파일용 application properties
    13. JAR 안에 있는 특정 프로파일용 application properties
    14. JAR 밖에 있는 application properties
    15. JAR 안에 있는 application properties
    16. @PropertySource
    17. 기본 프로퍼티 (SpringApplication.setDefaultProperties)

     

    - application.properites & appliation.yml 우선순위 ( 높은게 낮을걸 덮어 씁니다 ) 최종적으로 1개의 File만 남습니다.

    Properties 우선순위
    1. file:./config/
    2. file:./
    3. classpath:/config/
    4. classpath:/

     

    댓글

Designed by Tistory.