You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Yaml, a key may contain . like a.b.c:true.
In Spring, the values are resolved like properties so multiple values may be mapped to a single configuration property.
---
a:
b:
c: trueb.c: ~a.b:
c: false
@sanagaraj-pivotal requested a recipe to remove the duplicate keys
that prioritizes the last matched value.
Example
Choose 8080:
server.port: 9999server:
port: 8080
Choose 9999:
server:
port: 8080server.port: 9999
The text was updated successfully, but these errors were encountered:
In Yaml, a key may contain
.
likea.b.c:true
.In Spring, the values are resolved like properties so multiple values may be mapped to a single configuration property.
@sanagaraj-pivotal requested a recipe to remove the duplicate keys
that prioritizes the last matched value.
Example
Choose 8080:
Choose 9999:
The text was updated successfully, but these errors were encountered: