February 2018
Intermediate to advanced
356 pages
9h 10m
English
Spring Boot Actuator is pretty simple to configure in our pom.xml. We extended the parent pom of Spring Boot, so it is not necessary to specify the version of the dependency.
Let's configure our new dependency:
<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> </dependencies>
Awesome, really easy. Let's understand a little bit more before we test.