Spring Cloud 学习笔记08----服务消费者(Feign)(Finchley版本)

简介: 接上一篇《Spring Cloud 学习笔记06----断路器(Hystrix)(Finchley版本)》,今天我们来学习另外一种服务调用方式(Feign),之前我们介绍了 RestTemplate+Ribbon 消费服务的方式。

概要

接上一篇《Spring Cloud 学习笔记06----断路器(Hystrix)(Finchley版本)》,今天我们来学习另外一种服务调用方式(Feign),之前我们介绍了 RestTemplate+Ribbon 消费服务的方式。


Feign简介

Feign 是一个声明式的伪Http客户端,它使得写Http 客户端变得更简单,使用Feign,只需要创建一个接口并注解。它具有可插拔的注解特性,可使用Feign注解和JAX-RS注解,Feign 也支持可插拔的编码器和解码器,Spring Cloud 扩展了对Spring MVC的注解支持,在Spring Web 中同样使用HttpMessageConverters 。Feign 默认集成了Ribbon, 并和Eureka 结合,默认实现了负载均衡的效果。

简单来说:


Feign 采用的是基于接口的注解

Feign 整合了Ribbon, 具有负载均衡的能力

整合了Hystrix,具有熔断能力。

快速入门

首先,沿用前面的服务注册中心(eureka-server)以及服务提供者(order-provider)。然后新建一个SpringBoot 项目,命名为service-feign。添加依赖

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  </dependency>
  <dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-openfeign</artifactId>
  </dependency>
  <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-test</artifactId>
    <scope>test</scope>
  </dependency>
  <!--必须添加spring-boot-starter-web,否则注册失败-->
  <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
  </dependency>

然后,在application.yml 加上如下配置,指定端口为8765,服务名为service-feign:

spring:
  application:
    name: service-feign
eureka:
  client:
    service-url:
#    用于指定注册中心的地址
      defaultZone: http://localhost:1111/eureka/
server:
  port: 8765

接着,我们在ServiceFeignApplication 中添加@EnableFeignClients以激活Feign。添加@EnableEurekaClient 以开启负载均衡,使其可以注册到Eureka 中。

@SpringBootApplication
@EnableFeignClients
@EnableEurekaClient
public class ServiceFeignApplication {
  public static void main(String[] args) {
  SpringApplication.run(ServiceFeignApplication.class, args);
  }
}

接着,我们新建一个接口,用于调用服务提供者提供的服务,使用

@FeignClient(serviceId = "order-service") 指定调用的服务名为order-service。
@FeignClient(serviceId = "order-service")
public interface HelloService {
    @GetMapping(value = "/dc")
    String getOrderService(@RequestParam("name") String name);
}

最后,我们新建一个controller 调用刚刚新建接口HelloService中的方法,测试下是否可以调用成功

@RestController
public class HelloController {
    @Autowired
    private HelloService helloService;
    @GetMapping("/dc")
    public String getOrderService(String name) {
        return helloService.getOrderService(name);
    }
}

测试结果,我们启动两个order-provider 服务,端口号分别为 8082,8083,

然后,启动 service-feign, 端口号为:8765,

在Eureka面板中查看

bfd00078d06634b99838ecb8b4a71e63_20190214223211549.png

访问http://localhost:8765/dc?name=jay会交替出现如下结果:

hi: jay;port=8083
hi: jay;port=8082

参考代码

https://github.com/XWxiaowei/SpringCloud-Learning/tree/master/2-Finchley版教程示例/Chapter6-1


参考文献

http://cloud.spring.io/spring-cloud-static/Finchley.RELEASE/single/spring-cloud.html#netflix-feign-starter

https://blog.csdn.net/forezp/article/details/81040965


相关文章
|
3月前
|
存储 数据可视化 Java
基于MicrometerTracing门面和Zipkin实现集成springcloud2023的服务追踪
Sleuth将会停止维护,Sleuth最新版本也只支持springboot2。作为替代可以使用MicrometerTracing在微服务中作为服务追踪的工具。
191 1
|
2月前
|
JSON Java 测试技术
SpringCloud2023实战之接口服务测试工具SpringBootTest
SpringBootTest同时集成了JUnit Jupiter、AssertJ、Hamcrest测试辅助库,使得更容易编写但愿测试代码。
82 3
|
4月前
|
Java API 对象存储
微服务魔法启动!Spring Cloud与Netflix OSS联手,零基础也能创造服务奇迹!
这段内容介绍了如何使用Spring Cloud和Netflix OSS构建微服务架构。首先,基于Spring Boot创建项目并添加Spring Cloud依赖项。接着配置Eureka服务器实现服务发现,然后创建REST控制器作为API入口。为提高服务稳定性,利用Hystrix实现断路器模式。最后,在启动类中启用Eureka客户端功能。此外,还可集成其他Netflix OSS组件以增强系统功能。通过这些步骤,开发者可以更高效地构建稳定且可扩展的微服务系统。
80 1
|
XML 缓存 安全
【Spring学习笔记 七】深入理解Spring AOP实现机制
【Spring学习笔记 七】深入理解Spring AOP实现机制
223 0
|
监控 Java Spring
spring学习笔记(三)我对AOP理解
spring学习笔记(三)我对AOP理解
94 0
spring学习笔记(三)我对AOP理解
spring学习笔记二 注解及AOP
spring学习笔记二 注解及AOP注解: 使用注解的目的是为了代替配置,在使用注解时,省略键时,则是为value赋值。 扫描某个包下的所有类中的注解. 复制代码<?xml version="1.0" encoding="UTF-8"?>xmlns:context="http://www.
877 0
|
监控 Java Spring
spring学习笔记(6)AOP前夕[1]jdk动态代理实例解析
<div class="markdown_views"> <h1 id="jdk动态代理技术">JDK动态代理技术</h1> <p>动态代理最常见应用是AOP(面向切面编程)。通过AOP,我们能够地拿到我们的程序运行到某个节点时的方法、对象、入参、返回参数,并动态地在方法调用前后新添一些新的方法逻辑,来满足我们的新需求,比如日志记录等。 <br> 动态代理常见有两种方式:基于
1680 0