From 6ace7e53ed107dd4305b458d42f063ac7f9db122 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Thu, 16 Jul 2015 09:04:17 +0200 Subject: [PATCH] Clarify doc Add an explicit note about the need of Spring MVC for actuator HTTP endpoints. Also explicitly mention Jersey since it can be a source of confusion. See gh-2025 --- .../src/main/asciidoc/production-ready-features.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc b/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc index 31cd24dd35..e82d6cbc68 100644 --- a/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc @@ -9,6 +9,8 @@ application using HTTP endpoints, with JMX or even by remote shell (SSH or Telne Auditing, health and metrics gathering can be automatically applied to your application. -- +NOTE: Actuator HTTP endpoints are only available with a Spring MVC-based application. In +particular, it will not work with Jersey unless you enable Spring MVC as well. [[production-ready-enabling]]