본문 바로가기
Back-End/Spring

[Spring Cloud Config] Client 의 bootstrap.yml 지원 만료

by hongdor 2021. 2. 22.
728x90

스프링 클라우드 config client 에서 bootstrap.yml을 더이상 지원하지 않는다.

예전 자료들이 전부 bootstrap.yml 기반이라서 많이 해맸다. 하루는 해맨거 같다.

 

stackoverflow : java - Config Client is not working in Spring boot - Stack Overflow

2020.0.0 업데이트 내용 : Spring Cloud 2020.0 Release Notes · spring-cloud/spring-cloud-release Wiki · GitHub

spring 공식 문서 : Spring Cloud Config

 

 

이제 bootstrap.yml 대신 application.properties 또는 application.yml 에 

spring.config.import=optional:configserver:http://localhost:8888 속성을 추가해주는 것으로 대신한다.

 

 

과거

bootstrap.yml

spring:

  application:

    name: yaboong

  cloud:

    config:

      uri: http://localhost:8080

 

 

현재

application.yml

spring:

  config:

    import: optional:configserver: http://localhost:8888

 

 

 

 

 

728x90

댓글