Having Feign client as presented:
@FeignClient(name = "storeClient", url = "${feign.url}")
public interface StoreClient {
//..
}
Is is possible to make use of Spring Cloud capabilities of environment changes to change the Feign url at runtime? (Changing the feign.url property and invoking /refresh endpoint)