我在我的应用程序中使用以下接口定义:
@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);
}
如何在运行时更改网址值?