Config Server ์ค์ ํ์ผ ๊ด๋ฆฌ๋ฐฉ๋ฒ ์ง๋ฌธ
์ ์๋ ๋ฐฉ๋ฒ ์ฐพ์์ต๋๋ค ! ๋ง์ํ์ ๋ด์ฉ๋ ํด๋ณด๊ณ ์๋๋ฐ, ์ ๊ฐ ์ค์ ํ ๋ฐฉ๋ฒ์ bootstrap ์ ์ฌ์ฉํ์ต๋๋ค. # bootstrap.yaml spring: application: name: config-manager profiles: active: - dev cloud: config: server: git: uri: github force-pull: true encrypt: enabled: false bootstrap: true encrypt: key-store: alias: EncryptionKey location: file:///${user.home}/encrtypt.jks password: password dependency> groupId>org.springframework.cloudgroupId> artifactId>spring-cloud-starter-bootstrapartifactId> version>3.0.3version> dependency> bootstrap.yaml ์ ์ฌ์ฉํ๊ณ , cloud.config.server.bootstrap ์ `true` ๋ก ์ค์ ํ์ต๋๋ค. Flag indicating that the config server should initialize its own Environment with properties from the remote repository. Off by default because it delays startup but can be useful when embedding the server in another application. busrefresh ํ
์คํธ๋ uptime ์ํ์์ config server ์ `/actuator/env` ๋ก ๋ณ๊ฒฝ๋๋ ์ค์ ์ ํ์ธํ์ต๋๋ค.