溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

詳解spring cloud使用Hystrix實(shí)現(xiàn)單個(gè)方法的fallback

發(fā)布時(shí)間:2020-10-06 16:31:39 來源:腳本之家 閱讀:180 作者:牛奮lch 欄目:編程語言

本文介紹了spring cloud-使用Hystrix實(shí)現(xiàn)單個(gè)方法的fallback,分享給大家,具體如下:

一、加入Hystrix依賴

<dependency> 
      <groupId>org.springframework.cloud</groupId> 
      <artifactId>spring-cloud-starter-hystrix</artifactId> 
    </dependency> 

二、編寫Controller

package com.chhliu.springboot.restful.controller;  
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;  
import com.chhliu.springboot.restful.feignclient.UserFeignClient; 
import com.chhliu.springboot.restful.vo.User; 
import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand;  
@RestController 
public class RestTemplateControllerHystrixCommand { 
   
  @Autowired 
  private UserFeignClient client; // 使用Feign來消費(fèi)Restful服務(wù) 
   
  @GetMapping("/get/{id}") 
  @HystrixCommand(fallbackMethod="findByIdFallback")// 使用HystrixCommand注解,在fallbackMethod屬性中指定fallback的方法 
  public User findById(@PathVariable Long id) { 
    return client.findById(id); 
  } 
   
    // 覆寫fallbackMethod中指定的方法,注意,此方法的返回值,參數(shù)必須與原方法一致 
  public User findByIdFallback(Long id){ 
    User u = new User(); 
    u.setName("zhangsan"); 
    u.setUsername("chhliu"); 
    u.setId(9L); 
    return u; 
  } 
} 

三、在啟動(dòng)類中添加Hystrix支持

@EnableCircuitBreaker 

四、添加配置文件

server.port:7904 
# spring boot服務(wù)注冊(cè)到Eureka Server上的應(yīng)用名稱 
spring.application.name=springboot-rest-template-feign-hystrix 
eureka.instance.prefer-ip-address=true 
# Eureka Server注冊(cè)服務(wù)的地址 
eureka.client.service-url.defaultZone=http://chhliu:chhliu123456@localhost:8764/eureka 
springboot-h3.ribbon.NFLoadBalancerRuleClassName=com.netflix.loadbalancer.RetryRule 
hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds: 1 #為了測試Hystrix的fallback效果,此處將超時(shí)時(shí)間設(shè)置成1毫秒 

五、測試

在瀏覽器中輸入:http://localhost:7904/get/2

測試結(jié)果如下:

{"id":9,"username":"chhliu","name":"zhangsan","age":null,"balance":null} 

從上面的測試結(jié)果可以看出,由于連接超時(shí),直接進(jìn)入了fallback方法。

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI