diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc index 5fefb40a9e..a2c053e167 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc @@ -535,6 +535,10 @@ On your application classpath (for example, inside your jar) you can have an `ap When running in a new environment, an `application.properties` file can be provided outside of your jar that overrides the `name`. For one-off testing, you can launch with a specific command line switch (for example, `java -jar app.jar --name="Spring"`). +TIP: The `env` and `configprops` endpoints can be useful in determining why a property has a particular value. +You can use these two endpoints to diagnose unexpected property values. +See the "<>" section for details. + [[boot-features-external-config-command-line-args]]