본문 바로가기
MSA/MSA관련기술

Spring Cloud Config 프로젝트 초기 세팅

by 문자메일 2022. 10. 4.

1. 의존성 : Config Server 추가

 

 

2. ConfigServer 역할을 하기 위한 어노테이션 추가

@EnableConfigServer

@SpringBootApplication
@EnableConfigServer
public class BoardConfigApplication {

   public static void main(String[] args) {
      SpringApplication.run(BoardConfigApplication.class, args);
   }

}

 

 

3. application.yml 수정

server:
  port: 8888

spring:
  application:
    name: config-service
  profiles:
    active: native
  cloud:
    config:
      server:
        native:
          search-locations: file:///C:/board-local-config

 

 

4. 읽어 올 yml 정보 저장된 폴더 및 파일 내용 생성

 

5. 아래 url로 동작 확인 가능함.

댓글