欢迎您访问365答案网,请分享给你的朋友!
生活常识 学习资料

openFeign服务间调用

时间:2023-08-04
1.定义:

Fegin:基于Ribbon和Hystrix声明式服务调用组件 .Feign|OpenFeign 整合了Hystrix,具有熔断降级的能力 .Feign|OpenFeign 整合了Ribbon,具有负载均衡的能力

2.分类:

3.openFeign使用: 引入依赖

org.springframework.cloud spring-cloud-starter-openfeign 2.2.3.RELEASE

启动类需要添加@EnableFeignClients

@EnableFeignClients注解告诉框架扫描所有使用注解@FeignClient定义的feign客户端,并把feign客户端注册到IOC容器中。

创建一个接口:

// 参数1 value = 模块名 // 参数2 详解在下面 @FeignClient(value = "gp6-lms",contextId = "TrainplanUser")public interface TrainplanUserClient { // url含义如下图: @GetMapping("/gp6/lms/serviceApi/trainplanUser/getByUserIdPlanId") TrainplanUserDto getByUserIdPlanId(@RequestParam("userId") String userId, @RequestParam("planId") String planId, @RequestParam("platformId") String platformId); // 需要被调用的方法 @PostMapping("/gp6/lms/serviceApi/trainplanUser/addActivateTrainplanForOrderNo") String addActivateTrainplanForOrderNo(@RequestParam("platformId") String platformId, @RequestBody TrainplanDto trainplanDto, @RequestParam("userId") String userId, @RequestParam("userName") String userName, @RequestParam("resourceId") String resourceId);}

contextId的作用

一个模块中被调用的方法个数很多,我们不想都放在一个类中,可以创建多个类。

 

但是这时候会报错,因为Bean的名称冲突了。

The bean 'gp6-lms.FeignClientSpecification' could not be registered、A bean with that name has already been defined and overriding is disabled.

可以通过指定不同的contextId,来避免这个问题。可以通过操作的类名,来定义contextId。

服务间调用:

调用者:special模块,被调用者:lms模块

trainplanUserClient.getByUserIdPlanId(studentVO.getApplyId(),studentVO.getTrainplanId(),platformId);

Copyright © 2016-2020 www.365daan.com All Rights Reserved. 365答案网 版权所有 备案号:

部分内容来自互联网,版权归原作者所有,如有冒犯请联系我们,我们将在三个工作时内妥善处理。