Suppose I have 2 YAML files:
1) application.yml
en:
variable: "Hello World"
2) user.yml
en:
variable: <Here I want to get value from application.yml -> "Hello World" >
At first I though that I might use referencing:
1) application.yml
en:
variable: &variable "Hello World"
2) user.yml
en:
variable: *variable
But turned out that it is only possible for items declared in one file. Is there any way I can get the value from the variable defined in application.yml ?