Feigh是以接口形式工作,它没有方法体,那么Feign如何整合Hystrix呢?如何实现Feign的回退呢? 事实上,Spring Cloud默认已经为Feign整合了Hystrix,下面看一个实例。
一 新建项目microservice-consumer-movie-feign-hystrix-fallback
二 编写Feigh接口
代码语言:javascript复制package com.itmuch.cloud.study.user.feign;
import org.springframework.cloud.netflix.feign.FeignClient;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import com.itmuch.cloud.study.user.entity.User;
/**
* Feign的fallback测试
* 使用@FeignClient的fallback属性指定回退类
*/
@FeignClient(name = "microservice-provider-user", fallback = FeignClientFallback.class)
public interface UserFeignClient {
@RequestMapping(value = "/{id}", method = RequestMethod.GET)
public User findById(@PathVariable("id") Long id);
}
/**
* 回退类FeignClientFallback需实现Feign Client接口
* FeignClientFallback也可以是public class,没有区别
*/
@Component
class FeignClientFallback implements UserFeignClient {
@Override
public User findById(Long id) {
User user = new User();
user.setId(-1L);
user.setUsername("默认用户");
return user;
}
}
Jetbrains全家桶1年46,售后保障稳定
由代码可知,只须使用@FeignClient注解的fallback属性,就可为指定名称的Feign客户端添加回退。
三 测试
1 启动eureka
2 启动user微服务
3 启动电影微服务
4 访问 http://localhost:8010/user/1,可获得正常结果
{“id”:1,”username”:”account1″,”name”:”张三”,”age”:20,”balance”:100.00}
5 停止用户微服务
6 再次访问 http://localhost:8010/user/1,可获得如下结果,说明当用户微服务不可用,进入了回退逻辑。
{“id”:-1,”username”:”默认用户”,”name”:null,”age”:null,”balance”:null}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/234555.html原文链接:https://javaforall.cn