application.properties
spring.age=10
After starting the spring boot app, I’d like to make a change in properties.
application.properties
spring.age=20
The age=20 should be loaded without the need to restart the spring boot.
I tried with @ConditionOnProperty but even this has to be restarted to reflect if I am not wrong.