SpringCloud學習筆記之OpenFeign進行服務調用

前言

Feign是一個聲明式的Web服務客戶端,是面向接口編程的。也就是說使用Feign,隻需要創建一個接口並使用註解方式配置它,就可以完成對微服務提供方的接口綁定。

在使用RestTemplate時,每次調用服務都需要指定服務的具體路徑,當在多個地方同時使用時要寫多次,顯得代碼冗餘也難以維護,而openfeign就可以避免這種操作。

1、OpenFeign

1.1、OpenFeign概述

1. 是什麼?

Feign是一個聲明式的web服務客戶端,讓編寫web服務客戶端變得非常容易,隻需創建一個接口並在接口上添加註解即可。

源碼地址

2. 能幹嘛?

  • Feign旨在使編寫Java Http客戶端變得更容易。
  • 前面的服務調用在使用Ribbon + RestTemplate時,利用RestTemplate對http請求的封裝處理,形成瞭一套模板化的調用方法。但是在實際開發中,由於對服務依賴的調用可能不止一處,往往一個接口會被多處調用,所以通常都會針對每個微服務自行封裝一些客戶端類來包裝這些以來服務的調用。所以,Feign在此基礎上做瞭進一步封裝,由他來幫助我們定義和實現依賴服務接口的定義。在Feign的實現下,我們隻需創建一個接口並使用註解的方式來配置它(以前是Dao接口上面標註Mapper註解,現在是一個微服務接口上面標志一個Feign註解即可),即可完成對服務提供方的接口綁定,簡化瞭使用Spring Cloud Ribbon時,自動封裝服務調用客戶端的開發量。
  • Feign集成瞭Ribbon,利用Ribbon維護瞭Payment的服務列表信息,並且通過輪詢實現瞭客戶端的負載均衡。而與Ribbon不同的是,通過Feign隻需要定義服務綁定接口且以聲明式的方法,優雅而簡單的實現瞭服務調用。

3. Feign和OpenFeign的區別

Feign OpenFeign
Feign是SpringCloud組件中的一個輕量級restful的Http服務客戶端,Feign內置瞭Ribbon,用來做客戶端負載均衡,去調用服務註冊中心的服務。Feign的使用方式是:使用Feign的註解定義接口,調用這個接口,就可以調用服務註冊中心的服務 OpenFeign是SpringCloud在Feign的基礎上支持瞭SpringMVC的註解,如@RequestMapping等等。OpenFeign的@FeignClient可以解析SpringMVC的@RequestMapping註解下的接口,並通過動態代理的方式實現類,實現類中做負載均衡並調用其他服務

1.2、OpenFeign的使用步驟

1. 建Module

Module的名稱為cloud-consumer-feign-order80。

2. 改POM

<?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">
    <parent>
        <artifactId>cloud02</artifactId>
        <groupId>com.xiao</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>cloud-consumer-feign-order80</artifactId>

    <!--openfeign-->
    <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>com.xiao</groupId>
            <artifactId>cloud-api-commons</artifactId>
            <version>1.0-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>

3. 改YML

server:
  port: 80
eureka:
  client:
    register-with-eureka: false
    service-url:
      defaultZone: http://eureka7001.com:7001/eureka, http://eureka7002.com:7002/eureka


4. 主啟動

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.openfeign.EnableFeignClients;

@SpringBootApplication
@EnableFeignClients 		//開啟OpenFeign
public class OrderFeignMain80 {
    public static void main(String[] args) {
        SpringApplication.run(OrderFeignMain80.class,args);
    }
}

@EnableFeignClients開啟OpenFeign

5. PaymentFeignService接口

import com.xiao.cloud.entities.CommonResult;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;


@Component
@FeignClient(value = "CLOUD-PAYMENT-SERVICE")  // 使用OpenFeign
public interface PaymentFeignService {

    @GetMapping("/payment/get/{id}")
    public CommonResult getPaymentById(@PathVariable("id") Long id);
}

@FeignClient(value = "CLOUD-PAYMENT-SERVICE")使用OpenFeign。

6. Controller類

import com.xiao.cloud.entities.CommonResult;
import com.xiao.cloud.entities.Payment;
import com.xiao.cloud.service.PaymentFeignService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;

@RestController
@Slf4j
public class PaymentFeignController {

    @Autowired
    private PaymentFeignService paymentFeignService;


    @GetMapping("/consumer/payment/get/{id}")
    public CommonResult<Payment> getPaymentById(@PathVariable("id") Long id){
        return paymentFeignService.getPaymentById(id);
    }
}

7. 測試結果

當我們多次點擊刷新時,端口在8001和8002之間依次變化。

8. 小總結

1.3、超時控制

1.3.1、是什麼?

默認Feign客戶端隻等待一秒鐘,但是服務端處理需要超過1秒鐘,導致Feign客戶端不想等待瞭,直接返回報錯。為瞭避免這樣的情況,有時候我們需要設置Feign客戶端的超時控制。

在yml文件中開啟配置。

1.3.2、修改代碼設置超時錯誤

1. 修改支付模塊8001的Controller

添加以下代碼

    @GetMapping(value = "/payment/feign/timeout")
    public String timeOUt(){
        try {
            Thread.sleep(3000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        return ServerPort;
    }

2. 修改訂單模塊的PaymentFeignService

添加以下代碼

    @GetMapping(value = "/payment/feign/timeout")
    public String timeOUt();

3. 修改訂單模塊的OrderFeignController

添加以下代碼

    @GetMapping(value = "/consumer/payment/feign/timeout")
    public String timeOUt(){
        return paymentFeignService.timeOUt();
    }

4. 測試結果

直接對支付模塊8001的暴露的服務接口進行調用,測驗通過

如果通過訂單模塊進行調用,那麼就會報超時錯誤

1.3.3、進行超時配置

在訂單模塊的YML文件中添加以下代碼

ribbon:
  ReadTimeout:  8000
  ConnectTimeout: 8000

1. 測試結果

自測通過

1.4、日志打印

1.4.1、是什麼?

Feign提供瞭日志打印功能,我們可以通過配置來調整日志級別,從而瞭解FeignHttp請求的細節。就是對feign接口調用的情況進行監控和輸出。

1.4.2、日志級別

  1. NONE:默認的,不顯示任何日志
  2. BASIC:僅記錄請求方法、URL、響應狀態碼及執行時間
  3. HEADERS:除瞭BASIC中定義的信息之外,還有請求和響應的頭信息
  4. FULL:除瞭HEADERS中定義的信息之外,還有請求和響應的正文及元數據。

1.4.3、如何開啟日志打印

1. 編寫日志配置類

import feign.Logger;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class FeignConfig {

    @Bean
    Logger.Level feignLoggerLevel(){
        return Logger.Level.FULL;
    }
}

2. 在YML文件中進行相關配置

server:
  port: 80
eureka:
  client:
    register-with-eureka: false
    service-url:
      defaultZone: http://eureka7001.com:7001/eureka, http://eureka7002.com:7002/eureka

ribbon:
  ReadTimeout:  8000
  ConnectTimeout: 8000

logging:
  level:
    com.atguigu.springcloud.service.PaymentFeignService: debug

3. 測試結果

4. 包結構圖示

總結 

到此這篇關於SpringCloud學習筆記之OpenFeign進行服務調用的文章就介紹到這瞭,更多相關SpringCloud OpenFeign服務調用內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: