在上一篇文章,讲了服务的注册和发现。在微服务架构中,业务都会被拆分成一个独立的服务,服务与服务的通讯是基于http restful的。Spring cloud有两种服务调用方式,一种是ribbon+restTemplate,另一种是feign。在这一篇文章讲解下基于 feign 。
Feign是一个声明式的伪Http客户端,它使得写Http客户端变得更简单。使用Feign,只需要创建一个接口并注解。它具有可插拔的注解特性,可使用Feign 注解和JAX-RS注解。Feign支持可插拔的编码器和解码器。Feign默认集成了Ribbon,并和Eureka结合,默认实现了负载均衡的效果。
简而言之:
继续用上一节的工程, 启动eureka-server,端口为8761; 启动service-hi 两次,端口分别为8762 、8773.
新建一个spring-boot工程,取名为serice-feign,在它的pom文件引入Feign的起步依赖spring-cloud-starter-feign、Eureka的起步依赖spring-cloud-starter-netflix-eureka-client、Web的起步依赖spring-boot-starter-web,代码如下:
在工程的配置文件 application.yml 文件,指定程序名为service-feign,端口号为8765,服务注册地址为http://localhost:8761/eureka/ ,代码如下:
在程序的启动类ServiceFeignApplication ,加上@EnableFeignClients注解开启Feign的功能:
定义一个feign接口,通过@ FeignClient(“服务名”),来指定调用哪个服务。比如在代码中调用了service-hi服务的“/hi”接口,代码如下:
在Web层的controller层,对外暴露一个”/hi”的API接口,通过上面定义的Feign客户端 SchedualServiceHi 来消费服务。代码如下:
启动程序,多次访问http://localhost:8765/hi?name=言曌,浏览器交替显示:
hi 言曌,i am from port:8080
hi 言曌,i am from port:8081
代码地址:https://github.com/saysky/Spring-Cloud-Study-Demo
一、Feign简介
Feign是一个声明式的伪Http客户端,它使得写Http客户端变得更简单。使用Feign,只需要创建一个接口并注解。它具有可插拔的注解特性,可使用Feign 注解和JAX-RS注解。Feign支持可插拔的编码器和解码器。Feign默认集成了Ribbon,并和Eureka结合,默认实现了负载均衡的效果。
简而言之:
- Feign 采用的是基于接口的注解
- Feign 整合了ribbon,具有负载均衡的能力
- 整合了Hystrix,具有熔断的能力
二、准备工作
继续用上一节的工程, 启动eureka-server,端口为8761; 启动service-hi 两次,端口分别为8762 、8773.
三、创建一个feign的服务
新建一个spring-boot工程,取名为serice-feign,在它的pom文件引入Feign的起步依赖spring-cloud-starter-feign、Eureka的起步依赖spring-cloud-starter-netflix-eureka-client、Web的起步依赖spring-boot-starter-web,代码如下:
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.liuyanzhao.cloud</groupId>
- <artifactId>service-feign</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <packaging>jar</packaging>
- <name>service-feign</name>
- <description>Demo project for Spring Boot</description>
- <parent>
- <groupId>com.liuyanzhao.cloud</groupId>
- <artifactId>SpringCloud</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <dependencies>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-openfeign</artifactId>
- </dependency>
- </dependencies>
- </project>
在工程的配置文件 application.yml 文件,指定程序名为service-feign,端口号为8765,服务注册地址为http://localhost:8761/eureka/ ,代码如下:
- eureka:
- client:
- serviceUrl:
- defaultZone: http://localhost:8761/eureka/
- server:
- port: 8765
- spring:
- application:
- name: service-feign
- feign:
- hystrix:
- enabled: true
在程序的启动类ServiceFeignApplication ,加上@EnableFeignClients注解开启Feign的功能:
- package com.liuyanzhao.cloud;
- import org.springframework.boot.SpringApplication;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
- import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
- import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
- import org.springframework.cloud.openfeign.EnableFeignClients;
- @SpringBootApplication
- @EnableEurekaClient
- @EnableDiscoveryClient
- @EnableFeignClients
- public class SericeFeignApplication {
- public static void main(String[] args) {
- SpringApplication.run(SericeFeignApplication.class, args);
- }
- }
定义一个feign接口,通过@ FeignClient(“服务名”),来指定调用哪个服务。比如在代码中调用了service-hi服务的“/hi”接口,代码如下:
- package com.liuyanzhao.cloud.service;
- import org.springframework.cloud.openfeign.FeignClient;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RequestMethod;
- import org.springframework.web.bind.annotation.RequestParam;
- /**
- * @author 言曌
- * @date 2018/7/24 下午3:35
- */
- @FeignClient(value = "service-hi")
- public interface SchedualServiceHi {
- @RequestMapping(value = "/hi", method = RequestMethod.GET)
- String sayHiFromClientOne(@RequestParam(value = "name") String name);
- }
在Web层的controller层,对外暴露一个”/hi”的API接口,通过上面定义的Feign客户端 SchedualServiceHi 来消费服务。代码如下:
- package com.liuyanzhao.cloud.controller;
- import com.liuyanzhao.cloud.service.SchedualServiceHi;
- import com.liuyanzhao.cloud.service.SchedualServiceLu;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.RequestParam;
- import org.springframework.web.bind.annotation.RestController;
- /**
- * @author 言曌
- * @date 2018/7/24 下午3:46
- */
- @RestController
- public class HiController {
- //编译器报错,无视。 因为这个Bean是在程序启动的时候注入的,编译器感知不到,所以报错。
- @Autowired
- SchedualServiceHi schedualServiceHi;
- @Autowired
- SchedualServiceLu schedualServiceLu;
- @GetMapping(value = "/hi")
- public String sayHi(@RequestParam String name) {
- return schedualServiceHi.sayHiFromClientOne( name );
- }
- }
启动程序,多次访问http://localhost:8765/hi?name=言曌,浏览器交替显示:
hi 言曌,i am from port:8080
hi 言曌,i am from port:8081
代码地址:https://github.com/saysky/Spring-Cloud-Study-Demo
您可以选择一种方式赞助本站
支付宝扫一扫赞助
微信钱包扫描赞助
赏