Customer Name Assignment:
@FeignClient(name = "storeClient", url = "${feign.url}")
public interface StoreClient {
}
Is it possible to use Spring's cloud-based environment change features to change the Feign URL at runtime? (Change property feign.urland call endpoint /refresh)
source
share