I have one value in properties file lets say
my.flag=false
I am placing this file in {location of .war file}/config folder, to override the internal application.properties file. So when in my controller, I just print the value of this key, it does come out as false correctly.
Now my question is if I change this value in the application.properties to true, still in the controller I get the previous value(value at the time of starting the server).
So does it requires server restart each time if I have to change the value in application.properties file?