From f3acf50be2cb941fa5f2d788a446e7bad08b92ee Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Fri, 18 Dec 2015 10:16:30 +0000 Subject: [PATCH] Add escape of '{' to docs --- docs/src/main/asciidoc/spring-cloud-config.adoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/src/main/asciidoc/spring-cloud-config.adoc b/docs/src/main/asciidoc/spring-cloud-config.adoc index 1546c858..6aeb9660 100644 --- a/docs/src/main/asciidoc/spring-cloud-config.adoc +++ b/docs/src/main/asciidoc/spring-cloud-config.adoc @@ -392,10 +392,10 @@ they are Spring Cloud Config clients.) TIP: Normal, Spring environment placeholders with "${}" can be escaped (and resolved on the client) by using backslash ("\") to escape the -"$", e.g. `\${app.foo:bar}` resolves to "bar" unless the app provides -its own "app.foo". Note that in YAML you don't need to escape the -backslash itself, but in properties files you do, when you configure -the overrides on the server. +"$" or the "{", e.g. `\${app.foo:bar}` resolves to "bar" unless the +app provides its own "app.foo". Note that in YAML you don't need to +escape the backslash itself, but in properties files you do, when you +configure the overrides on the server. You can change the priority of all overrides in the client to be more like default values, allowing applications to supply their own values