I'm having a hard time to understand how to use Netflix Archaius with Spring Boot Config.
I have a a microservice that gets the configuration from a Spring Cloud Config Server but I would like to have the configuration automatically refreshed when it is changed. As I understand this can be achieved with Archaius in the client side by pulling the info from the repository.
I have searched but cannot find a tutorial or example where this is done.
@RefreshScope
annotation to the beans and then either calling the/refresh
endpoint (on the client side) or calling the/bus/refresh
if using Spring Cloud Bus. Also you can schedule refresh interval within the client application. – Vieva