
1. 개발 환경intellijjava 17spring boot 3.2.0 2. dependency 추가implementation 'org.springframework.boot:spring-boot-starter-actuator'implementation 'org.springframework.cloud:spring-cloud-starter' 3. application.properties에 refresh 추가management.endpoints.web.exposure.include=refresh 4. @ConfigurationProperties Class 생성import lombok.Getter;import lombok.Setter;import org.springframework.boot.context...