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 8bcab71a5c2..836ea30a897 100644 --- a/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc @@ -398,9 +398,10 @@ and (inside ``): ---- -NOTE: The `useDefaultDelimiters` property is important if you are using standard -Spring placeholders in your configuration (e.g. `${foo}`). These may be expanded -by the build if that property is not set to `false`. +NOTE: The `useDefaultDelimiters` property is important if you are using standard Spring +placeholders in your configuration (e.g. `${foo}`). These may be expanded by the build if +that property is not set to `false`. + [[production-ready-application-info-automatic-expansion-gradle]] @@ -608,7 +609,10 @@ users full access to the health endpoint in a secure application. To do so, set `sensitive` flag value "`false`" indicated in bold): |==== -|`management.security.enabled` |`endpoints.health.sensitive` |Unauthenticated |Authenticated +|`management.security.enabled` +|`endpoints.health.sensitive` +|Unauthenticated +|Authenticated |false |**false** diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index f8767490a82..ceef1116169 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -765,9 +765,10 @@ property editors (via a `CustomEditorConfigurer` bean) or custom `Converters` (w bean definitions annotated as `@ConfigurationPropertiesBinding`). NOTE: As this bean is requested very early during the application lifecycle, make sure to -limit the dependencies your `ConversionService` is using. Typically, any dependency that -you'd require may not be fully initialized at creation time. You may want to rename your -custom `ConversionService` if it's not required for configuration keys coercion. +limit the dependencies that your `ConversionService` is using. Typically, any dependency +that you require may not be fully initialized at creation time. You may want to rename +your custom `ConversionService` if it's not required for configuration keys coercion. + [[boot-features-external-config-validation]]