Commit 258f1d6c authored by Madhura Bhave's avatar Madhura Bhave

Merge pull request #24326 from dreis2211

* pr/24326:
  Fix Asciidoc build step

Closes gh-24326
parents 97714005 b9ec88a7
...@@ -733,14 +733,20 @@ For instance, the two examples below produce the same result: ...@@ -733,14 +733,20 @@ For instance, the two examples below produce the same result:
[source,yaml,indent=0,configblocks] [source,yaml,indent=0,configblocks]
---- ----
spring.config.import=my.properties spring:
my.property=value config:
import: my.properties
my:
property: value
---- ----
[source,yaml,indent=0,configblocks] [source,yaml,indent=0,configblocks]
---- ----
my.property=value my:
spring.config.import=my.properties property: value
spring:
config:
import: my.properties
---- ----
In both of the above examples, the values from the `my.properties` file will take precedence over the file that triggered its import. In both of the above examples, the values from the `my.properties` file will take precedence over the file that triggered its import.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment