FeignClient

@FeignClient(name = ServiceNameConstants.MEMBER_SERVICE, path = ServiceNameConstants.MEMBER_PATH)
public interface IOldBoxLifeClient extends OldBoxLifeMallApi{

}


//@FeignClient(name = ServiceNameConstants.MEMBER_SERVICE,path = ServiceNameConstants.MEMBER_PATH)
@FeignClient(url = "${box.url.member}",name = ServiceNameConstants.MEMBER_SERVICE, path = ServiceNameConstants.MEMBER_PATH)


/**
* 会员服务的serviceid
*/
public static final String MEMBER_SERVICE = "box-member-service";
public static final String MEMBER_PATH = "/member";
小蚊子大人
原文地址:https://www.cnblogs.com/ywsheng/p/14975873.html