Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -733,14 +733,20 @@ For instance, the two examples below produce the same result:

[source,yaml,indent=0,configblocks]
----
spring.config.import=my.properties
my.property=value
spring:
config:
import: my.properties
my:
property: value
----

[source,yaml,indent=0,configblocks]
----
my.property=value
spring.config.import=my.properties
my:
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.
Expand Down