Suppose I have an application.yml
server:
port: 3000
host: foo
application-dev.yml
server:
port: 8080
host: bar
Suppose my application-dev_xyz.yml and application-qat_xyz.yml doesn't contain the server field at all
What will be the value of server.host property for the profile dev_xyz and qat_xyz?
The question is similar to this one but it doesn't answer this type of problem specifically