最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

SpringCloud?Feign超詳細講解

 更新時間:2022年10月31日 08:36:03   作者:游坦之  
Feign是Netflix公司開發(fā)的一個聲明式的REST調(diào)用客戶端;?Ribbon負載均衡、?Hystrⅸ服務熔斷是我們Spring?Cloud中進行微服務開發(fā)非常基礎(chǔ)的組件,在使用的過程中我們也發(fā)現(xiàn)它們一般都是同時出現(xiàn)的,而且配置也都非常相似

一、什么是Feign

Feign是聲明式Web Service客戶端,它讓微服務之間的調(diào)用變得更簡單,類似controller調(diào)用service。SpringCloud集成了Ribbon和Eureka,可以使用Feigin提供負載均衡的http客戶端。Feign是通過接口和注釋來實現(xiàn)負載均衡的。

二、Feign能干什么

(摘抄自狂神說JAVA)

Feign能干什么?

Feign旨在使編寫Java Http客戶端變得更容易

前面在使用Ribbon + RestTemplate時,利用RestTemplate對Http請求的封裝處理,形成了一套模板化的調(diào)用方法。但是在實際開發(fā)中,由于對服務依賴的調(diào)用可能不止一處,往往一個接口會被多處調(diào)用,所以通常都會針對每個微服務自行封裝一個客戶端類來包裝這些依賴服務的調(diào)用。所以,F(xiàn)eign在此基礎(chǔ)上做了進一步的封裝,由他來幫助我們定義和實現(xiàn)依賴服務接口的定義,在Feign的實現(xiàn)下,我們只需要創(chuàng)建一個接口并使用注解的方式來配置它 (類似以前Dao接口上標注Mapper注解,現(xiàn)在是一個微服務接口上面標注一個Feign注解),即可完成對服務提供方的接口綁定,簡化了使用Spring Cloud Ribbon 時,自動封裝服務調(diào)用客戶端的開發(fā)量。

Feign默認集成了Ribbon

利用Ribbon維護了MicroServiceCloud-Dept的服務列表信息,并且通過輪詢實現(xiàn)了客戶端的負載均衡,而與Ribbon不同的是,通過Feign只需要定義服務綁定接口且以聲明式的方法,優(yōu)雅而簡單的實現(xiàn)了服務調(diào)用。

三、Feign的使用步驟

1、新建一個module

2、配置Pom.xml

<?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>springcloud-demo2</artifactId>
        <groupId>com.you</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>springcloud-eureka-7001</artifactId>
    <dependencies>
        <!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-eureka-server -->
        <!--Eureka Server-->
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-eureka-server</artifactId>
            <version>1.4.6.RELEASE</version>
        </dependency>
        <!--熱部署-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
        </dependency>
    </dependencies>
</project>

3、配置applicatin.yaml

server:
  port: 801

eureka:
  client:
    register-with-eureka: false  #不向eureka注冊自己
    service-url:
      defaultZone: http://localhost:7001/eureka/
ribbon:
  eureka:
    enabled: true

4、配置configBean

package com.you.config;
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.client.RestTemplate;
@Configuration
public class ConfigBean {
    @Bean
    @LoadBalanced  //ribbon
    /*配置負載均衡實現(xiàn)RestTemplate*/
    /*IRule*/
    /*RoundRobinRule 輪詢 */
    /*RandomRule 隨機*/
    /*AvailabilityFilteringRule 優(yōu)先過濾掉跳閘、訪問故障的服務,對剩下的進行輪詢 */
    public RestTemplate getRestTemplate() {
        return new RestTemplate();
    }
}

5、配置Controller類

package com.you.config;
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.client.RestTemplate;
@Configuration
public class ConfigBean {
    @Bean
    @LoadBalanced  //ribbon
    /*配置負載均衡實現(xiàn)RestTemplate*/
    /*IRule*/
    /*RoundRobinRule 輪詢 */
    /*RandomRule 隨機*/
    /*AvailabilityFilteringRule 優(yōu)先過濾掉跳閘、訪問故障的服務,對剩下的進行輪詢 */
    public RestTemplate getRestTemplate() {
        return new RestTemplate();
    }
}

6、配置啟動類

package com.you;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.cloud.netflix.ribbon.RibbonClient;
import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframework.context.annotation.ComponentScan;
@SpringBootApplication
@EnableEurekaClient
@EnableFeignClients(basePackages = {
        "com.you"})
public class FeignDeptConsumer_80 {
    public static void main(String[] args) {
        SpringApplication.run(FeignDeptConsumer_80.class,args);
    }
}

7、改動API

1)引入Feign依賴

 <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-feign</artifactId>
            <version>1.4.6.RELEASE</version>
        </dependency>

2)配置Service

package com.you.service;
import com.you.pojo.Dept;
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;
import org.springframework.web.bind.annotation.RequestMapping;
@Component
@FeignClient(value = "SPRINGCLOUD-PROVIDER-DEPT")
public interface DeptClientService {
    @GetMapping("/dept/aDept/{id}")
    public Dept getDeptOfId(@PathVariable("id") Long id);
}

3)注意

服務名字要寫對GetMapper中的內(nèi)容要和提供者一致,否則報錯(找了一下午)

下面是提供者的內(nèi)容

四、結(jié)果

這樣即可獲取到數(shù)據(jù),而且負載平衡的默認算法,仍然是輪詢!

到此這篇關(guān)于SpringCloud Feign超詳細講解的文章就介紹到這了,更多相關(guān)SpringCloud Feign內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

最新評論

佛学| 蚌埠市| 抚宁县| 科技| 长阳| 丁青县| 平湖市| 赣榆县| 个旧市| 大安市| 遂溪县| 昌黎县| 微山县| 百色市| 陇川县| 五原县| 临夏市| 巴楚县| 琼海市| 通渭县| 临高县| 宝山区| 昌图县| 砚山县| 洱源县| 韩城市| 广河县| 青田县| 南木林县| 宣武区| 平遥县| 贞丰县| 宁河县| 香港 | 铁岭县| 五峰| 郑州市| 漳平市| 曲麻莱县| 定边县| 武川县|