I am developing a spring boot application
I want to override some properties in src/main/resources/application.properties
with an external file (e.g.
Note: The following solution will replace the old application.properties entirely
You can place your application.properties in one of the following locations:
And then exclude the default one under resources directory, like:
src/main/resources
true
**/application.properties
Find more details in this link