Recent Posts
Link
Archives
목록Spring Cloud Config Server (1)
킹다의 개발블로그
Spring Cloud Config Server 설정해보기
Spring Cloud Config Server 설정 1. dependencies 추가 implementation group: 'org.springframework.cloud', name: 'spring-cloud-config-server', version: '3.0.4'2. boot Application 수정 @EnableConfigServer 어노테이션 추가 3. application.yml 또는 application.properties 수정 server: port: 8888 spring: cloud: config: server: git: uri: https://github.com/dayoon97/config-server-example/ search-path..
02. 프레임워크/spring
2021. 8. 13. 10:31