当前位置:   article > 正文

springboot后台使用openfeign调用其他微服务接口_@component的类可以被其他微服务调用吗

@component的类可以被其他微服务调用吗

第一步:在porm中引入openfeign依赖

<dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-openfeign</artifactId>
</dependency>
  • 1
  • 2
  • 3
  • 4

第二步:创建外部服务接口类,添加注解和添加外部接口方法

@Component
@FeignClient(value = "identity")
//value中的值为对应微服务的服务名
public interface DockingClient {

    @PostMapping("/docking/modelTree/{modelId}")
    Result<?> getModelTree(@PathVariable(value = "modelId") String modelId);

    @PostMapping("/identityManage/allIdentities")
    //括号内是外部服务的接口地址
    Result<?> getAllIdentities();
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

第三步:调用该接口获取外部接口数据

@Resource
private DockingClient dockingClient;

@Override
    public Result<?> getNumber(Integer stuNum,Integer lessonsNum) {
        Result<?> allIdentities=dockingClient.getAllIdentities();
        log.info("allIdentities:[{}]", allIdentities);
        if (!allIdentities.isSuccess()) {
            log.error(allIdentities.getMessage());
            throw new ErpException(allIdentities.getMessage());
        }
        int identityNum=Integer.parseInt(String.valueOf(((Map<String, Object>) allIdentities.getResult()).get("total")));
        Map<String,Integer> map = new HashMap<String, Integer>();
        map.put("identityNum",identityNum);
        map.put("lessonsNum",lessonsNum);
        map.put("studentNum",stuNum);
        return Result.OK(map);
    }

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/84543
推荐阅读
相关标签
  

闽ICP备14008679号