Merge branch '2.6.x' into 2.7.x

Closes gh-30528
This commit is contained in:
Moritz Halbritter
2022-04-04 14:22:49 +02:00
4 changed files with 6 additions and 7 deletions

View File

@@ -453,7 +453,7 @@ The use of placeholders with and without defaults is shown in the following exam
description: "${app.name} is a Spring Boot application written by ${username:Unknown}"
----
Assuming that the `username` property has not be set elsewhere, `app.description` will have the value `MyApp is a Spring Boot application written by Unknown`.
Assuming that the `username` property has not been set elsewhere, `app.description` will have the value `MyApp is a Spring Boot application written by Unknown`.
TIP: You can also use this technique to create "`short`" variants of existing Spring Boot properties.
See the _<<howto#howto.properties-and-configuration.short-command-line-arguments>>_ how-to for details.