October 2018
Intermediate to advanced
982 pages
23h 29m
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.
Read now
Unlock full access