我是靠谱客的博主 迷你月光,最近开发中收集的这篇文章主要介绍hystrix 单独使用_java相关:详解spring cloud使用Hystrix实现单个方法的fallback,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

java相关:详解spring cloud使用Hystrix实现单个方法的fallback

发布于 2020-2-25|

复制链接

本篇文章主要介绍了详解spring cloud-使用Hystrix实现单个方法的fallback,小妖觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小妖过来看看吧

本文介绍了spring cloud-使用Hystrix实现单个方法的fallback,分享给大家,具体如下:一、加入Hystrix依赖

```xml

org.springframework.cloud

spring-cloud-starter-hystrix

```

二、编写Controller

```java

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支持

```java

@EnableCircuitBreaker

```

四、添加配置文件

```plain

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方法。

最后

以上就是迷你月光为你收集整理的hystrix 单独使用_java相关:详解spring cloud使用Hystrix实现单个方法的fallback的全部内容,希望文章能够帮你解决hystrix 单独使用_java相关:详解spring cloud使用Hystrix实现单个方法的fallback所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部