当前位置:   article > 正文

微服务OpenFeign服务间调用_openfeign服务间调用必须用到nacos或者

openfeign服务间调用必须用到nacos或者

通常服务间调用conreoller接口我们可通过

  1. HTTPClient客户端定义好参数及路径进行调用
  2. 引入RestTemplate进行调用

而OpenFeign则是一个更加方便的HTTP客户端,OpenFeign为Feign的升级版,在Feign的基础上增加了支持REST调用,通过注解绑定服务name和路径端口进行调用

OpenFeign的简单使用:

1 . 首先需要引入OpenFeign的依赖注解

  1. <!--远程调用openfeign-->
  2. <dependency>
  3. <groupId>org.springframework.cloud</groupId>
  4. <artifactId>spring-cloud-starter-openfeign</artifactId>
  5. </dependency>
  6. <!--openfeign默认使用的是loadBalance的负载均衡器-->
  7. <dependency>
  8. <groupId>org.springframework.cloud</groupId>
  9. <artifactId>spring-cloud-loadbalancer</artifactId>
  10. </dependency>

2 . 创建OpenFeign调用接口BusinessFeign

3 . 并将该类使用 @FeignClient 注解将该接口变成OpenFeign的客户端

4 . 其次需要给每个服务配置服务名,OpenFeign客户端才能成功扫描到

spring.application.name=business

5 . 同时需要在注解中配置需要调用服务的name,同时也可配置需要调用服务的IP端口

  • @FeignClient ("business")  //当business存在多台服务器时,此配置可通过OpenFeign默认的loadbalancer实现负载均衡访问各服务器
  • @FeignClient (name = "business", url = "http://localhost:8000/business") //使用name配置被调用服务名,url指定被调用服务的IP端口

同时也可使用将服务注册到注册中心直接调用

6 . 在OpenFeign客户端中配置访问的方法接口,定义请求方式,请求前缀及返回类型(与被调用服务接口一致即可)

  1. //@FeignClient("business") //当business存在多台服务器时,此配置可通过负载均衡访问各服务器
  2. @FeignClient(name = "business", url = "http://localhost:8000/business")
  3. public interface BusinessFeign {
  4. @GetMapping("/hello")
  5. public String hello();
  6. }

7 . 最后还需要对SpringBoot启动类添加 @EnableFeignClients("//openfeign客户端包地址") ,让Spring能启动并扫描到该OpenFeign客户端


最后对OpenFeign客户端及接口进行测试,直接注入OpenFeign客户端Bean,并调用客户端中的方法即可,最后会将被调用方的结果返回给该方法

  1. @Resource
  2. BusinessFeign businessFeign;
  3. @GetMapping("/hello")
  4. public String hello(){
  5. String hello = businessFeign.hello();
  6. LOG.info("远程调用business响应结果:{}", hello);
  7. return hello;
  8. }

总结:openfeign是微服务之间互相调用的重要方法,也可结合注册中心进行进一步的使用,在微服务调用的使用频率也是比较高的,后续也还会持续更新升级~

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/1005731
推荐阅读
相关标签
  

闽ICP备14008679号