can we use spring cloud config to change the configuration properties of one of the beans at runtime without having to restart the application i.e requiring context reloading.
I currently have a spring boot setup where any change to the application properties needs a restart of the application.
There are multiple options for refreshing the config properties without restart with spring cloud config. You can:
@RefreshScope
for beans dependent on certain properties. See https://spring.io/guides/gs/centralized-configuration/