I\'m using Spring Boot and I\'ve got a use case where user can upload a file which should cause a restart of application (since user\'s upload is used during creation of mul
In your case it might be possible to use the /refresh endpoint (see http://cloud.spring.io/spring-cloud-config/spring-cloud-config.html#_endpoints) and annotate the beans that depend on the changed configuration with @RefreshScope.