To use the actuator you need the following dependency in your pom.xml:
<dependencys>
...
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
...
</dependencys>Request:
curl localhost:8080/actuator/healthResponse:
{ "status": "UP" }
Further examples can be found in the official documentation.