springcloud微服務系列教程(四) 服務消費者 Spring Cloud Feign

前言

上篇博文中咱們講述瞭如何用RestTemplate配合ribbon作服務消費負載均衡的過程,這是springcloud服務消費的一種方式,本章爲你們介紹另外一種服務消費方式,就是Spring Cloud Feign。java

Spring Cloud Feign是一套聲明式服務調用客戶端 ,經過建立接口並加上註解的方式來使用,同時還整合了Ribbon和Eureka來提供均衡負載的HTTP客戶端實現 。下面開始爲你們介紹它的使用。git

開始實戰

項目開始,咱們先建一個springboot的主工程,工程名稱爲feign。而後,爲了展現feign的服務消費過程,咱們須要有服務註冊中心和客戶端,在這裏咱們沿用上篇文章的兩個工程eureka-server和eureka-client(詳情可見https://blog.csdn.net/yeyazhishang/article/details/81392085),準備工做作好後,咱們右鍵新建一個Module,名稱爲feign-client,加入eureka和feign的依賴後,建好後工程的pom文件以下:github

<?xml version="1.0" encoding="UTF-8"?>
<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.yeya</groupId>
    <artifactId>feign</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>feign</name>
    <description>Demo project for Spring Boot</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.3.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
        <spring-cloud.version>Finchley.RELEASE</spring-cloud.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-openfeign</artifactId>
        </dependency>
        <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.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>${spring-cloud.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>

PS:在這裏聲明,由於樓主所使用的springboot版本爲2.0.3,因此idea默認加入的springcloud依賴版本也相對較新,也就是Finchley版本(springcloud從發佈以來有好幾個版本,有興趣的讀者能夠到官網去查看),部分依賴的名稱和舊版本有些許不一樣,如有讀者使用舊版本的springboot,直接複製筆者的pom文件中的依賴名稱可能會報錯,因此建議你們儘可能保持版本一致。web

建好了工程,按以下代碼配置:spring

eureka:
  client:
    serviceUrl:
      defaultZone: http://localhost:1111/eureka/
server:
  port: 1115
spring:
  application:
    name: feign-client

在啓動類Application類中加入註解@EnableDiscoveryClient 和@EnableFeignClients ,開啓Feign的功能 :apache

@SpringBootApplication
@EnableDiscoveryClient
@EnableFeignClients
public class FeignApplication { 
 
   

    public static void main(String[] args) {
        SpringApplication.run(FeignApplication.class, args);
    }
}

定義一個feign的客戶端接口FeignService,在接口上加上註解@ FeignClient(「服務名」),來指定調用哪一個服務:瀏覽器

@FeignClient("eureka-client")
public interface FeignService { 
 
   

    @RequestMapping("/hello")
    String helloCallBack();
}

使用註解@ FeignClient後,定義restful接口的方法,訪問的路徑爲所調用服務的某個對應方法名,例子上面的 「/hello」 就是對應eureka-client的 「/hello」 接口。springboot

建立一個web的controller層,暴露一個對外的 「/feignhello」 ,這樣就能夠消費服務。restful

@RestController
public class HelloController { 
 
   

    //注入feignService接口
    @Autowired
    FeignService feignService;

    @GetMapping(value = "/feignhello")
    public String Hello() {
        return feignService.helloCallBack();
    }
}

前後啓動config-server,兩個config-client,feign-client,能夠看到註冊中內心都註冊成功了
這裏寫圖片描述
在瀏覽器中屢次訪問http://localhost:1119/feignhello,能夠看到瀏覽器交替顯示app

hello : 1112 
hello : 1113

證明了feign組件的確能夠消費服務,並且有負載均衡的功能。

本文的源碼地址:https://github.com/Taoxj/SpringCloudDemo/tree/master/feign

本文分享 CSDN - 鄙人薛某。
若有侵權,請聯繫 support@oschina.cn 刪除。
本文參與「OSC源創計劃」,歡迎正在閱讀的你也加入,一塊兒分享。

相關文章
相關標籤/搜索