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로 동작 확인 가능함.
'MSA > MSA관련기술' 카테고리의 다른 글
msa 관련 도커 명령어 저장 (1) | 2022.10.06 |
---|---|
도커 관련 정리 (도커 명령어 포함) (0) | 2022.10.05 |
Spring Security - Authentication + Authorization (0) | 2022.07.08 |
Spring cloud gateway - eureka 연동 로드벨런싱 설정 (0) | 2022.07.05 |
Spring Cloud Gateway (api gateway) (0) | 2022.07.04 |
댓글