Does spring boot support using both properties and yml files at the same time?

I can answer my own question, as it just works as you would expect. The application.yml file and the appropriate application-${profile}.properties both get loaded and merged into the environment. Spring boot just makes this work naturally.

Leave a Comment