From bcce6f9f07106acc5c8eaeddbd4c9eb7a18e74f2 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 23 Mar 2020 14:16:55 +0100 Subject: [PATCH] Document that Jackson is a required dependency of the Actuator Closes gh-19564 --- .../src/main/asciidoc/index.adoc | 2 +- .../src/main/asciidoc/production-ready-features.adoc | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/asciidoc/index.adoc b/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/asciidoc/index.adoc index 76964e7c81d..f01934a4fae 100644 --- a/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/asciidoc/index.adoc +++ b/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/asciidoc/index.adoc @@ -20,7 +20,7 @@ Before you proceed, you should read the following topics: * <> * <> - +NOTE: In order to get the correct JSON responses documented below, Jackson must be available. [[overview-endpoint-urls]] === URLs diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc index 1122867f6d4..085e6db43ae 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc @@ -976,6 +976,8 @@ For example, `health` is exposed as `/actuator/health`. TIP: Actuator is supported natively with Spring MVC, Spring WebFlux, and Jersey. If both Jersey and Spring MVC are available, Spring MVC will be used. +NOTE: Jackson is a required dependency in order to get the correct JSON responses as documented in the API documentation ({spring-boot-actuator-restapi}/html[HTML] or {spring-boot-actuator-restapi}/pdf/spring-boot-actuator-web-api.pdf[PDF]). + [[production-ready-customizing-management-server-context-path]]