From b365e37850469624915b6c08ebdf7aacb27e96c7 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Wed, 29 Nov 2017 14:25:32 +0100 Subject: [PATCH] Fix typo Closes gh-11204 --- .../src/main/asciidoc/production-ready-features.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 2509ab135b..20ab0b8bd1 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 @@ -820,11 +820,11 @@ settings show an example of doing so in `application.properties`: [[production-ready-disable-jmx-endpoints]] === Disabling JMX Endpoints If you do not want to expose endpoints over JMX, you can set the -`endpoints.default.jmx.enabled` property to `false`, as shown in the following example: +`management.endpoints.jmx.enabled` property to `false`, as shown in the following example: [source,properties,indent=0] ---- - endpoints.default.jmx.enabled=false + management.endpoints.jmx.enabled=false ----