https://incheol-jung.gitbook.io/docs/study/srping-in-action-5th/chap-16.
Spring boot 액추에이터는 실행중인 어플리케이션의 내부를 볼 수 있게하고, 어느 정도 까지는 어플리케이션의 작동 방법을 제어할 수 있게 해준다.
다음은 Actuator 로 확인할 수 있는 정보들이다.
Maven 을 사용중이면 다음을 추가한다.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>