Skip to Main Content
Spring Boot 2.0 Cookbook - Second Edition
book

Spring Boot 2.0 Cookbook - Second Edition

by Alex Antonov
February 2018
Intermediate to advanced content levelIntermediate to advanced
286 pages
7h 20m
English
Packt Publishing
Content preview from Spring Boot 2.0 Cookbook - Second Edition

How to do it...

  1. The first thing that we need to do is add a dependency to the Spring Boot Actuator starter in our build.gradle file with the following content:
dependencies { 
    ... 
    compile("org.springframework.boot:spring-boot-starter-    data-rest") 
    // compile("org.springframework.boot:spring-boot-starter-    jetty") //       Need to use Jetty instead of Tomcat 
    compile("org.springframework.boot:spring-boot-starter-     actuator") 
    compile project(':db-count-starter') 
    ... 
} 
  1. Adding this dependency alone already gives us the ability to access the Spring management /actuator/* endpoints, such as /env, /info, /metrics, and /health, (though they are disabled by default, unless a management.endpoints.web.exposure.include=* property is configured in the application.properties ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Spring 5.0 Cookbook

Spring 5.0 Cookbook

Sherwin John Calleja Tragura
Spring Boot 2.0 Projects

Spring Boot 2.0 Projects

Mohamed Shazin Sadakath
Java Hibernate Cookbook

Java Hibernate Cookbook

Yogesh Prajapati, Vishal Ranapariya

Publisher Resources

ISBN: 9781787129825Supplemental Content