Spring Cloud Context 내용을 정리하였습니다. The Boostrap Application Context Context는 외부 configuration 설정을 가져오는 역할과 로컬 configuration 설정을 가져와 복호화하는 역할을 합니다. Main context과 bootstrap context가 있습니다. 일반적인 applicationl.yaml과 다르게 bootstrap.yaml이라는 파일을 만들어서 사용하며 main context과 분리하여 외부 configuration 설정을 관리할 수 있습니다. spring.application.name : 애플리케이션의 context ID spring.profiles.active : profile 설정 spring.cloud.bootstr..