Actuator 란? 애플리케이션의 내부를 볼 수 있게 하고, 애플리케이션의 작동 방법을 제어할 수 있게 한다. 의존성 주입 (build.gradle) dependencies { implementation 'org.springframework.boot:spring-boot-starter-actuator' ... } 설정 파일 (application.yml) management: endpoints: web: exposure: include: refresh, health, beans, httptrace Actuator의 refresh 를 호출하면 서버 재시동 없이 설정파일을 다시 가져온다.