07霍比、SpringCloud Feign整合Hystrix

一烟零、代碼示例

說明:此處使用的SpringBoot版本為2.1.13.RELEASE瘪松,SpringCloud版本為Greenwich.SR5
此處不再貼server與client代碼。
1锨阿、maven依賴

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

2宵睦、application.yml
增加配置
feign:
hystrix:
enabled: true

server:
  port: 9005
spring:
  application:
    name: feign-hystrix
eureka:
  instance:
    hostname: localhost
    prefer-ip-address: true
    instance-id: feign-hystrix-9005
  client:
    service-url:
      defaultZone: http://eureka7001:7001/eureka/,http://eureka7002:7002/eureka/,http://eureka7003:7003/eureka/
feign:
  hystrix:
    enabled: true
#info信息
info:
  app:
    name: feign-hystrix-9005
  company:
    name: www.xxx.com
  build:
    artifactId: ${project.artifactId}
    version: ${project.version}

3、啟動類

package org.example;

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

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

4墅诡、其他java類
定義接口FeignService 壳嚎,增加@FeignClient,指明調用的服務末早,以及fallback

@FeignClient(value = "CLIENT",fallback = FeignServiceFallback.class)
public interface FeignService {
    @GetMapping("/hello/{name}")
    public String hello(@PathVariable("name") String name);
}

增加FeignService 接口的FeignServiceFallback,該類需注入到容器

package org.example.service;

import org.springframework.stereotype.Component;

@Component
public class FeignServiceFallback implements FeignService{

    @Override
    public String hello(String name) {
        return "helloError,"+name;
    }
}

Controller類

package org.example.controller;

import org.example.service.FeignService;
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
public class FeignHystrixController {

    @Autowired
    private FeignService feignService;

    @GetMapping("/hello/{name}")
    public String hello(@PathVariable String name){
        return feignService.hello(name);
    }
}

2烟馅、測試驗證

先后啟動server、client和本服務荐吉,訪問http://localhost:7001/

image.png

再訪問http://localhost:9005/hello/zs
image.png

然后焙糟,停止client,再次訪問
image.png

表明代碼生效。
github:
https://github.com/panli1988/cloud01
https://github.com/panli1988/cloud02
參考:
https://blog.csdn.net/forezp/article/details/70148833
http://www.itmuch.com/spring-cloud/spring-cloud-index/
還有尚硅谷周陽老師的視頻

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末样屠,一起剝皮案震驚了整個濱河市穿撮,隨后出現(xiàn)的幾起案子缺脉,更是在濱河造成了極大的恐慌,老刑警劉巖悦穿,帶你破解...
    沈念sama閱讀 211,639評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件攻礼,死亡現(xiàn)場離奇詭異,居然都是意外死亡栗柒,警方通過查閱死者的電腦和手機礁扮,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,277評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來瞬沦,“玉大人太伊,你說我怎么就攤上這事」渥辏” “怎么了僚焦?”我有些...
    開封第一講書人閱讀 157,221評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長曙痘。 經常有香客問我芳悲,道長,這世上最難降的妖魔是什么边坤? 我笑而不...
    開封第一講書人閱讀 56,474評論 1 283
  • 正文 為了忘掉前任名扛,我火速辦了婚禮,結果婚禮上茧痒,老公的妹妹穿的比我還像新娘肮韧。我一直安慰自己,他們只是感情好旺订,可當我...
    茶點故事閱讀 65,570評論 6 386
  • 文/花漫 我一把揭開白布惹苗。 她就那樣靜靜地躺著,像睡著了一般耸峭。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上淋纲,一...
    開封第一講書人閱讀 49,816評論 1 290
  • 那天劳闹,我揣著相機與錄音,去河邊找鬼洽瞬。 笑死本涕,一個胖子當著我的面吹牛,可吹牛的內容都是我干的伙窃。 我是一名探鬼主播菩颖,決...
    沈念sama閱讀 38,957評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼为障!你這毒婦竟也來了晦闰?” 一聲冷哼從身側響起放祟,我...
    開封第一講書人閱讀 37,718評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎呻右,沒想到半個月后跪妥,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經...
    沈念sama閱讀 44,176評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡声滥,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,511評論 2 327
  • 正文 我和宋清朗相戀三年眉撵,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片落塑。...
    茶點故事閱讀 38,646評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡纽疟,死狀恐怖,靈堂內的尸體忽然破棺而出憾赁,到底是詐尸還是另有隱情污朽,我是刑警寧澤,帶...
    沈念sama閱讀 34,322評論 4 330
  • 正文 年R本政府宣布缠沈,位于F島的核電站膘壶,受9級特大地震影響,放射性物質發(fā)生泄漏洲愤。R本人自食惡果不足惜颓芭,卻給世界環(huán)境...
    茶點故事閱讀 39,934評論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望柬赐。 院中可真熱鬧亡问,春花似錦、人聲如沸肛宋。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,755評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽酝陈。三九已至床玻,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間沉帮,已是汗流浹背锈死。 一陣腳步聲響...
    開封第一講書人閱讀 31,987評論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留穆壕,地道東北人待牵。 一個月前我還...
    沈念sama閱讀 46,358評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像喇勋,于是被迫代替她去往敵國和親缨该。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,514評論 2 348

推薦閱讀更多精彩內容