I'm using the following interface definition in my application:
@FeignClient(name = "inventory-manage",
configuration = EtermTestRequestShoppingConfiguration.class,
url="http://xxxx")
public interface EtermTestRequestShopping {
@RequestMapping(method = RequestMethod.POST,
value = "/inventory/manager/shopping")
@ResponseBody
Single<String> shoping(@RequestBody ShoppingSearchReq shoppingSearchReq);
}
How can I change the url value during the runtime?