基本上就是调用远程的Service就像在本地调用一样;https://www.jianshu.com/p/7ca91139dca5
无论是Restful方式调用或是RPC方式调用:比如查询商品接口:可能调用的服务包括查询库存和查询商品详情;
@Autowired
private RestTemplate restTemplate;
restTemplate.getForObject("http://url", Hello.class);
@FeignClient //假装的client
网友评论