谷粒商城 远程调用服务(通过member会员服务调用优惠券服务)
前提:已经有优惠券的数据接口
分为以下步骤:
1. 编写feiginService接口
1)声明feignclient (加入@feignClient注解)
2)调用远程服务的接口( @RequestMapping(“/coupon/coupon/member/list”) 以及 方法的声明接口 )
2. 开启远程服务 在application中加入注解 ( @EnableFeginClients(basePackages=(com.zx....fegin)))
3. 调用feginService进行测试
原文:https://www.cnblogs.com/zxdeblog/p/14783237.html