This commit is contained in:
Phillip Webb 2015-10-14 00:09:04 -07:00
parent ab7bec1160
commit e2fc30ef24
2 changed files with 12 additions and 7 deletions

View File

@ -398,9 +398,10 @@ and (inside `<plugins/>`):
</plugin> </plugin>
---- ----
NOTE: The `useDefaultDelimiters` property is important if you are using standard NOTE: The `useDefaultDelimiters` property is important if you are using standard Spring
Spring placeholders in your configuration (e.g. `${foo}`). These may be expanded placeholders in your configuration (e.g. `${foo}`). These may be expanded by the build if
by the build if that property is not set to `false`. that property is not set to `false`.
[[production-ready-application-info-automatic-expansion-gradle]] [[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): `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
|**false** |**false**

View File

@ -765,9 +765,10 @@ property editors (via a `CustomEditorConfigurer` bean) or custom `Converters` (w
bean definitions annotated as `@ConfigurationPropertiesBinding`). bean definitions annotated as `@ConfigurationPropertiesBinding`).
NOTE: As this bean is requested very early during the application lifecycle, make sure to 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 limit the dependencies that your `ConversionService` is using. Typically, any dependency
you'd require may not be fully initialized at creation time. You may want to rename your that you require may not be fully initialized at creation time. You may want to rename
custom `ConversionService` if it's not required for configuration keys coercion. your custom `ConversionService` if it's not required for configuration keys coercion.
[[boot-features-external-config-validation]] [[boot-features-external-config-validation]]