From 334c381ac838d7dc43c9054714f0256bd7864d58 Mon Sep 17 00:00:00 2001 From: buildmaster Date: Thu, 3 Jan 2019 16:54:48 +0000 Subject: [PATCH] Bumping versions --- README.adoc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.adoc b/README.adoc index 65df9617..d3fdadf9 100644 --- a/README.adoc +++ b/README.adoc @@ -163,6 +163,14 @@ To modify the startup behavior, you can change the location of the config server spring.cloud.config.uri: http://myconfigserver.com ---- +By default, if no application name is set, `application` will be used. To modify the name, the following property can be added to the `bootstrap.properties` file: + +---- +spring.application.name: myapp +---- + +NOTE: When setting the property `${spring.application.name}` do not prefix your app name with the reserved word `application-` to prevent issues resolving the correct property source. + The bootstrap properties show up in the `/env` endpoint as a high-priority property source, as shown in the following example. ----