Home > Software engineering >  can spring cloud config be used to set configuration properties without needing application restart
can spring cloud config be used to set configuration properties without needing application restart

Time:01-12

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.

CodePudding user response:

There are multiple options for refreshing the config properties without restart with spring cloud config. You can:

  • Related