Spring Boot Actuator http://localhost:8080/actuator/ 위 링크 접속시 아래처럼 각 항목별 상세 링크 정보를 알려준다 이러한 방식을 HATEOAS 방식이라고 한다 각각의 url은 endpoint라고 부른다 self -> http://127.0.0.1:8080/actuator health -> http://127.0.0.1:8080/actuator/health health-path -> http://127.0.0.1:8080/actuator/health/{*path} 의존성 추가 implementation 'org.springframework.boot:spring-boot-starter-actuator' 핵심 라이브러리인 micrometer-core를 ..