-
spring cloud config (server,client,watcher) 구현하기 2 - client serverWEB/BACK 2024. 7. 24. 13:54반응형
spring cloud config client 구현
springboot 프로젝트를 새로 생성한다.
1. dependency 추가
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
2. application.properties 관련 내용 추가
#cloud config test
spring.application.name=spring-cloud-config-client
spring.cloud.config.profile=dev
spring.cloud.config.label=0.0.1
# /actuator/refresh를 위해 추가
management.endpoints.web.exposure.include=refresh
spring.config.import=optional:configserver:http://localhost:8081 #spring cloud config server주소
3. property 정의
getter /setter 지정 toString 도 생성해서 테스트해보쟈
4. controller 생성
5. 결과
데이터를 refresh 하는방법은 다음 포스팅에서.....(polling 방법사용)
반응형'WEB > BACK' 카테고리의 다른 글
프로젝트에 등록된 모든 oauth-clients 확인 API (0) 2024.11.29 spring cloud config (security) 구현하기 4 (0) 2024.08.01 spring cloud config (server,client,watcher,java) 구현하기 1 (0) 2024.07.24 RSA in JAVA , rsa256 key 생성 (0) 2024.07.03 springboot2.7 + JWT + RSA256(openssl) (1) 2024.07.03