Spring Cloud(四)服务提供者 Eureka + 服务消费者 Feign
2020-12-13 06:18
标签:res 它的 back 图片 ati framework 定义 discover XML 上一篇文章,讲述了如何通过 使用 并和 简而言之: 导入第三篇文章中的项目:作为服务注册中心 导入第三篇文章中的项目:作为服务的提供者 服务消费者 新建项目 在工程的启动类中,通过 通过 写一个 完整配置 指定注册中心地址,配置自己的服务名称 依次启动项目: 启动该工程后,访问服务注册中心,查看服务是否都已注册成功:http://localhost:8761/ 浏览器 Spring Cloud(四)服务提供者 Eureka + 服务消费者 Feign 标签:res 它的 back 图片 ati framework 定义 discover XML 原文地址:https://www.cnblogs.com/lukelook/p/11173930.htmlRestTemplate + Ribbon
去消费服务,这篇文章主要讲述如何通过Feign
去消费服务。Feign简介
Feign
是一个声明式的伪Http
客户端,它使得写Http
客户端变得更简单。Feign
,只需要创建一个接口并注解,它具有可插拔的注解特性,可使用Feign
注解和JAX-RS
注解,Feign
支持可插拔的编码器和解码器,Feign
默认集成了Ribbon
,Eureka
结合,默认实现了负载均衡的效果。Feign
具有如下特性:
Feign
注解和JAX-RS
注解HTTP
编码器和解码器Hystrix
和它的Fallback
Ribbon
的负载均衡HTTP
请求和响应的压缩Feign
是一个声明式的Web Service
客户端,它的目的就是让Web Service
调用更加简单。它整合了Ribbon
和Hystrix
,从而不再需要显式地使用这两个组件。Feign
还提供了HTTP
请求的模板,通过编写简单的接口和注解,就可以定义好HTTP
请求的参数、格式、地址等信息。接下来,Feign
会完全代理HTTP
的请求,我们只需要像调用方法一样调用它就可以完成服务请求。Feign
能干Ribbon
和Hystrix
的事情,但是要用Ribbon
和Hystrix
自带的注解必须要引入相应的jar
包才可以。准备工作
Eureka Service
spring-cloud-eureka-service
Eureka Provider
spring-cloud-eureka-provider-1
spring-cloud-eureka-provider-2
spring-cloud-eureka-provider-3
Feign Consumer
添加依赖
spring-cloud-feign-consumer
pom.xml
中引入需要的依赖内容:dependency>
groupId>org.springframework.cloudgroupId>
artifactId>spring-cloud-starter-feignartifactId>
dependency>
开启Feign
@EnableFeignClients
注解开启Feign的功能:package com.sc.robbin.consumer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.netflix.feign.EnableFeignClients;
@EnableFeignClients
@EnableDiscoveryClient
@SpringBootApplication
public class FeignConsumerApplication {
public static void main(String[] args) {
SpringApplication.run(FeignConsumerApplication.class, args);
}
}
定义接口
@FeignClient("服务名")
,来指定调用哪个服务。package com.sc.robbin.consumer;
import org.springframework.cloud.netflix.feign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
/**
* 描述: 指定这个接口所要调用的 提供者服务名称 "service-hi"
*
* @author
* @create 2019年7月12日 08:16:40
**/
@FeignClient("service-hi")
public interface HomeClient {
@GetMapping("/")
String consumer();
}
消费方法
Controller
,消费提供者的 home
方法package com.sc.robbin.consumer;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;
/**
* 描述:调用提供者的 `home` 方法
*
* @author
* @create 2017-12-05 18:53
**/
@RestController
public class ConsumerController {
@Autowired
private HomeClient homeClient;
@GetMapping(value = "/hello")
public String hello() {
return homeClient.consumer();
}
}
添加配置
application.yml
eureka:
client:
serviceUrl:
defaultZone: http://localhost:8761/eureka/
spring:
application:
name: feign-consumer
server:
port: 9001
测试服务
spring-cloud-eureka-service
spring-cloud-eureka-provider-1
spring-cloud-eureka-provider-2
spring-cloud-eureka-provider-3
spring-cloud-feign-consumer
负载均衡响应
get
请求: http://localhost:9001/hello
文章标题:Spring Cloud(四)服务提供者 Eureka + 服务消费者 Feign
文章链接:http://soscw.com/essay/32845.html