Spring Boot Actuator

Spring Boot includes a number of additional features to help you monitor and manage your application. The spring-boot-actuator module provides all of Spring Boot’s production-ready features. Let’s start creating a new Spring Boot project with web and actuator dependencies: spring init --dependencies=web,actuator --language=groovy --build=gradle spring-boot-actuator This is the build.gradle file generated: buildscript { ext { springBootVersion = '1.5.12.RELEASE' } repositories { mavenCentral() } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") } } apply plugin: 'groovy' apply plugin: 'org. [Read More]