spring cloudはHystrixを使って単一の方法のfallbackを実現します。


本論文では、spring cloud-Hystrixを使用して個々の方法を実現するfallbackを紹介します。
一、Hystrixへの加入依存

<dependency> 
      <groupId>org.springframework.cloud</groupId> 
      <artifactId>spring-cloud-starter-hystrix</artifactId> 
    </dependency> 
二、コントロラーの作成

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   Restful   
   
  @GetMapping("/get/{id}") 
  @HystrixCommand(fallbackMethod="findByIdFallback")//   HystrixCommand  , fallbackMethod     fallback    
  public User findById(@PathVariable Long id) { 
    return client.findById(id); 
  } 
   
    //   fallbackMethod      ,  ,       ,           
  public User findByIdFallback(Long id){ 
    User u = new User(); 
    u.setName("zhangsan"); 
    u.setUsername("chhliu"); 
    u.setId(9L); 
    return u; 
  } 
} 
三、スタートクラスにHystrixサポートを追加する

@EnableCircuitBreaker 
四、プロファイルを追加する

server.port:7904 
# spring boot     Eureka Server       
spring.application.name=springboot-rest-template-feign-hystrix 
eureka.instance.prefer-ip-address=true 
# Eureka Server        
eureka.client.service-url.defaultZone=http://chhliu:chhliu123456@localhost:8764/eureka 
springboot-h2.ribbon.NFLoadBalancerRuleClassName=com.netflix.loadbalancer.RetryRule 
hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds: 1 #    Hystrix fallback  ,          1   
五、テスト
ブラウザに入力:http://localhost:7904/get/2
テストの結果は以下の通りです。
{id”:9、“username”:“chhliu”、“name”:“zhangsan”、“age”:null、“balance”:null” 
上記のテスト結果から、接続がタイムアウトしたため、直接にfallback方法に入ったことが分かります。
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。