[Spring Boot Core] 2.1. Externalized Configuration 개요와 JSON Application Properties 설정하기
구성설정 외부화 개요예제command line 프로퍼티 액세스JSON Application properties예제 코드JSON Application Properties 설정하기테스트1. 구성설정 외부화 개요Spring Boot 를 이용하면, configuration을 외부화하여 여러 환경에서 동일한 코드를 활용하여 애플리케이션을 실행시킬 수 있습니다.Java Config 파일, YAML 파일, 환경변수 및 명령어 인수 등을 통해 다양한 외부 구성 소스를 활용할 수 있습니다.Spring 에서는 아래 3가지 방식으로 값을 주입합니다.@Value 애너테이션을 이용하여 Bean에 직접 주입Spring 의 환경 추상화를 통한 접근@ConfigurationProperties 로 객체에 바인딩하여 활용Spring B..
2024. 11. 3. 17:11