成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

12、Feign整合斷路器Hystrix

lei___ / 332人閱讀

摘要:公眾號(hào)樂(lè)園上編說(shuō)了整合斷路器,這篇來(lái)看看如何整合斷路器,整合斷路器也是相對(duì)比較簡(jiǎn)單的。默認(rèn)已經(jīng)自帶斷路器,所以不需要像整合斷路器那樣需要在的啟動(dòng)類添加注解。但是自帶斷路器并沒有打開,需要做些額外的配置。

公眾號(hào): java樂(lè)園

上編說(shuō)了《RestTemplate+Ribbon整合斷路器Hystrix》,這篇來(lái)看看如何Feign整合斷路器Hystrix,F(xiàn)eign整合斷路器Hystrix也是相對(duì)比較簡(jiǎn)單的。Feign默認(rèn)已經(jīng)自帶斷路器Hystrix,所以不需要像RestTemplate+Ribbon整合斷路器Hystrix那樣需要在SpringBoot的啟動(dòng)類添加注解。但是Feign自帶斷路器并沒有打開,需要做些額外的配置。

feign:
   hystrix:
     enabled: true

1、 新建項(xiàng)目sc-eureka-client-consumer-feign-hystrix,對(duì)應(yīng)的pom.xml文件如下


    4.0.0

    spring-cloud
    sc-eureka-client-consumer-feign
    0.0.1-SNAPSHOT
    jar

    sc-eureka-client-consumer-feign
    http://maven.apache.org

    
        org.springframework.boot
        spring-boot-starter-parent
        2.0.4.RELEASE
    

    
        
            
                org.springframework.cloud
                spring-cloud-dependencies
                Finchley.RELEASE
                pom
                import
            

        
    

    
        UTF-8
        1.8
        1.8
    

    
    
        
        
            org.springframework.cloud
            spring-cloud-starter-netflix-eureka-client
        

        
            org.springframework.boot
            spring-boot-starter-web
        
        
        

        
            org.springframework.cloud
            spring-cloud-starter-openfeign
        
        
    

備注:從繼續(xù)關(guān)系可以看出spring-cloud-starter-openfeign已經(jīng)集成斷路器Hystrix

2、 新建springboot啟動(dòng)類

package sc.consumer;

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

@SpringBootApplication
@EnableEurekaClient
@EnableFeignClients
public class ConsumerFeignApplication {
    
    public static void main(String[] args) {
        SpringApplication.run(ConsumerFeignApplication.class, args);
    }

}

3、 新建配置文件bootstrap.yml和application.yml
bootstrap.yml

server:
  port: 5800

application.yml

spring:
  application:
    name: sc-eureka-client-consumer-feign-hystrix

eureka:
  client:
    registerWithEureka: true #是否將自己注冊(cè)到Eureka服務(wù)中,默認(rèn)為true
    fetchRegistry: true #是否從Eureka中獲取注冊(cè)信息,默認(rèn)為true
    serviceUrl:
      defaultZone: http://localhost:5001/eureka/
 
feign:
  hystrix:
enabled: true

說(shuō)明:在application.yml配置文件添加了開啟斷路器Hystrix的配置項(xiàng)

4、 新建服務(wù)消費(fèi)者類UserService.java

package sc.consumer.service;

import java.util.Map;

import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;

import sc.consumer.model.User;
import sc.consumer.service.hystrix.UserServiceHystrix;

@FeignClient(value="sc-eureka-client-provider", fallback=UserServiceHystrix.class)
public interface UserService {

    @GetMapping("/user/getUser/{id}")
    Map getUser(@PathVariable(value ="id") Long id);

    @RequestMapping("/user/listUser")
    Map listUser();

    @PostMapping("/user/addUser")
    Map addUser(@RequestBody User user);

    @PutMapping("/user/updateUser")
    Map updateUser(@RequestBody User user);

    @DeleteMapping("/user/deleteUser/{id}")
    Map deleteUser(@PathVariable(value ="id") Long id);

}

可以看到在該類的FeignClient注解上添加了一個(gè)屬性fallback

5、 新建斷路器處理類UserServiceHystrix.java

package sc.consumer.service.hystrix;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.springframework.stereotype.Component;

import sc.consumer.model.User;
import sc.consumer.service.UserService;

@Component
public class UserServiceHystrix  implements UserService{

    @Override
    public Map getUser(Long id) {
        Map result = new HashMap();
        result.put("code", "000000");
        result.put("msg", "success");
        User u = new User();
        u.setId(-1L);
        u.setUserName("failBackName");
        result.put("body", u);
        return result;
    }

    @Override
    public Map listUser() {
        Map result = new HashMap();
        result.put("code", "000000");
        result.put("msg", "success");
        List list = new ArrayList();
        User u = new User();
        u.setId(-1L);
        u.setUserName("failBackName");
        list.add(u);
        result.put("body", list);
        return result;
    }

    @Override
    public Map addUser(User user) {
        Map result = new HashMap();
        result.put("code", "000000");
        result.put("msg", "success");
        result.put("body", 0);
        return result;
    }

    @Override
    public Map updateUser(User user) {
        Map result = new HashMap();
        result.put("code", "000000");
        result.put("msg", "success");
        result.put("body", 0);
        return result;
    }

    @Override
    public Map deleteUser(Long id) {
        Map result = new HashMap();
        result.put("code", "000000");
        result.put("msg", "success");
        result.put("body", 0);
        return result;
    }

}

該類實(shí)現(xiàn)了UserService接口,并實(shí)現(xiàn)了該接口的所有方法。

6、 分別啟動(dòng)注冊(cè)中心sc-eureka-server和服務(wù)提供者sc-eureka-client-provider

7、 啟動(dòng)sc-eureka-client-consumer-feign-hystrix,并驗(yàn)證是否啟動(dòng)成功
方式一:查看日志看看對(duì)應(yīng)的端口是啟動(dòng)

方式二:查看注冊(cè)中心是否注冊(cè)成功

8、 使用postman驗(yàn)證斷路器是否啟用
上篇從服務(wù)提供者是否正常啟動(dòng)驗(yàn)證斷路器是否啟動(dòng),今天看看從數(shù)據(jù)庫(kù)是否啟動(dòng)來(lái)驗(yàn)證斷路器是否啟動(dòng)
(1)MySQL服務(wù)正常啟動(dòng)時(shí)訪問(wèn):
http://127.0.0.1:5800/feign/user/listUser

(2)MySQL服務(wù)關(guān)閉時(shí)訪問(wèn)
http://127.0.0.1:5800/feign/user/listUser

再看下后臺(tái)日志:

其他接口可以自行按照以上方式進(jìn)行驗(yàn)證,看看斷路器是否啟動(dòng)

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/76053.html

相關(guān)文章

  • Spring Cloud 體驗(yàn)

    摘要:多層服務(wù)調(diào)用常見于微服務(wù)架構(gòu)中較底層的服務(wù)如果出現(xiàn)故障,會(huì)導(dǎo)致連鎖故障。 Spring Cloud 體驗(yàn) 簡(jiǎn)介 Spring Cloud為開發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)的一些工具,包括配置管理、服務(wù)發(fā)現(xiàn)、斷路器、路由、微代理、 事件總線、全局鎖、決策競(jìng)選、分布式會(huì)話等等 基于Spring Boot,Spring Cloud將各公司成熟服務(wù)框架組合起來(lái),通過(guò)Spring Boo...

    NotFound 評(píng)論0 收藏0
  • 兩年了,我寫了這些干貨!

    摘要:開公眾號(hào)差不多兩年了,有不少原創(chuàng)教程,當(dāng)原創(chuàng)越來(lái)越多時(shí),大家搜索起來(lái)就很不方便,因此做了一個(gè)索引幫助大家快速找到需要的文章系列處理登錄請(qǐng)求前后端分離一使用完美處理權(quán)限問(wèn)題前后端分離二使用完美處理權(quán)限問(wèn)題前后端分離三中密碼加鹽與中異常統(tǒng)一處理 開公眾號(hào)差不多兩年了,有不少原創(chuàng)教程,當(dāng)原創(chuàng)越來(lái)越多時(shí),大家搜索起來(lái)就很不方便,因此做了一個(gè)索引幫助大家快速找到需要的文章! Spring Boo...

    huayeluoliuhen 評(píng)論0 收藏0
  • Spring Cloud 快速入門

    摘要:服務(wù)注冊(cè)中心一個(gè)服務(wù)注冊(cè)中心,所有的服務(wù)都在注冊(cè)中心注冊(cè),負(fù)載均衡也是通過(guò)在注冊(cè)中心注冊(cè)的服務(wù)來(lái)使用一定策略來(lái)實(shí)現(xiàn)。在客戶端實(shí)現(xiàn)了負(fù)載均衡。 文章參考于史上最簡(jiǎn)單的 SpringCloud 教程 | 終章 Spring Cloud 是一個(gè)微服務(wù)框架,與 Spring Boot 結(jié)合,開發(fā)簡(jiǎn)單。將一個(gè)大工程項(xiàng)目,分成多個(gè)小 web 服務(wù)工程,可以分別獨(dú)立擴(kuò)展,又可以共同合作。 環(huán)境 ...

    fuyi501 評(píng)論0 收藏0
  • SpringCloud(第 016 篇)電影微服務(wù), 定制Feign,一個(gè)Feign功能禁用而另一個(gè)

    摘要:在該配置中,加入這個(gè)方法的話,表明使用了該配置的地方,就會(huì)禁用該模塊使用容災(zāi)降級(jí)的功能添加訪問(wèn)層添加電影微服務(wù)啟動(dòng)類電影微服務(wù),定制,一個(gè)功能禁用,另一個(gè)功能啟用。 SpringCloud(第 016 篇)電影微服務(wù),定制Feign,一個(gè)Feign功能禁用Hystrix,另一個(gè)Feign功能啟用Hystrix - 一、大致介紹 1、在一些場(chǎng)景中,部分功能需要使用斷路器功能,部分功能不需...

    張憲坤 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<