E.g. there is a configuration application.yaml
application:
a: some string
b:
- 1
- 2
I try to override these properties with
SPRING_APPLICATION_JSON={"application": {"a": null, "b": null}}
And it doesn't override values from yaml file, but when values in json are not null everything works fine.