- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章SpringCloud @FeignClient参数的用法解析由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
今天因为工作中遇到FeignClient一个奇葩的bug,后面仔细研究了,找出了原因,那么刚好对FeignClient 这个注解总结一下:
先看@FeignClient 源码:源码如下,本文最后面.
11个方法,常用方法说明如下 。
1
|
@FeignClient
(name =
"service-name"
, url =
"${feign.urls.service-name:}"
, fallback =ApiFallBack.
class
,configuration = Interceptor.
class
)
|
value
,name
这两个就同一个意思:对应的是调用的微服务的服务名,对用服务发现、走网关调用,这个很关键。url
这是访问地址,可以直接提供给外部调用,也可以直接写如192.168.1.11:8800/applicationNamefallback
与fallbackFactory
就给@FeignClient注解设置fallback属性,并且回退类要继承@FeignClient所注解的接口 。
ApiFallBack类拿出去单独作为一个类的话,我们就得在该类上添加注解@Component 。
如果fallback默认优先级比fallfactory优先级高。所以二者都存在的话,会访问fallback的回退方法.
这里不做演示.
那么fallback和fallfactory有什么区别呢 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
@FeignClient
(name =
"service-name"
, fallbackFactory = HystrixClientFallbackFactory.
class
)
protected
interface
HystrixClient {
@RequestMapping
(method = RequestMethod.GET, value =
"/test"
)
Hello iFailSometimes();
}
@Component
static
class
HystrixClientFallbackFactory
implements
FallbackFactory<HystrixClient> {
@Override
public
HystrixClient create(Throwable cause) {
return
new
HystrixClientWithFallBackFactory() {
@Override
public
Hello iFailSometimes() {
return
new
Hello(
"fallback; reason was: "
+ cause.getMessage());
}
};
}
}
|
fallback和fallfactory区别 。
fallback
只是重写了回退方法。fallfactory
层面比较深,因为它用线程抛出了异常,可以看到底层具体问题。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
/**
* Annotation for interfaces declaring that a REST client with that interface should be
* created (e.g. for autowiring into another component). If ribbon is available it will be
* used to load balance the backend requests, and the load balancer can be configured
* using a <code>@RibbonClient</code> with the same name (i.e. value) as the feign client.
*
* @author Spencer Gibb
* @author Venil Noronha
*/
@Target
(ElementType.TYPE)
@Retention
(RetentionPolicy.RUNTIME)
@Documented
public
@interface
FeignClient {
/**
* The name of the service with optional protocol prefix. Synonym for {@link #name()
* name}. A name must be specified for all clients, whether or not a url is provided.
* Can be specified as property key, eg: ${propertyKey}.
*/
@AliasFor
(
"name"
)
String value()
default
""
;
/**
* The service id with optional protocol prefix. Synonym for {@link #value() value}.
*
* @deprecated use {@link #name() name} instead
*/
@Deprecated
String serviceId()
default
""
;
/**
* The service id with optional protocol prefix. Synonym for {@link #value() value}.
*/
@AliasFor
(
"value"
)
String name()
default
""
;
/**
* Sets the <code>@Qualifier</code> value for the feign client.
*/
String qualifier()
default
""
;
/**
* An absolute URL or resolvable hostname (the protocol is optional).
*/
String url()
default
""
;
/**
* Whether 404s should be decoded instead of throwing FeignExceptions
*/
boolean
decode404()
default
false
;
/**
* A custom <code>@Configuration</code> for the feign client. Can contain override
* <code>@Bean</code> definition for the pieces that make up the client, for instance
* {@link feign.codec.Decoder}, {@link feign.codec.Encoder}, {@link feign.Contract}.
*
* @see FeignClientsConfiguration for the defaults
*/
Class<?>[] configuration()
default
{};
/**
* Fallback class for the specified Feign client interface. The fallback class must
* implement the interface annotated by this annotation and be a valid spring bean.
*/
Class<?> fallback()
default
void
.
class
;
/**
* Define a fallback factory for the specified Feign client interface. The fallback
* factory must produce instances of fallback classes that implement the interface
* annotated by {@link FeignClient}. The fallback factory must be a valid spring
* bean.
*
* @see feign.hystrix.FallbackFactory for details.
*/
Class<?> fallbackFactory()
default
void
.
class
;
/**
* Path prefix to be used by all method-level mappings. Can be used with or without
* <code>@RibbonClient</code>.
*/
String path()
default
""
;
/**
* Whether to mark the feign proxy as a primary bean. Defaults to true.
*/
boolean
primary()
default
true
;
}
|
怕以后又忘记,总结下目前项目中实际用到的 @FeignClient 注解中的参数,如下:
1
2
3
4
5
|
@FeignClient
(value =
"annoroad-alpha"
, url =
"${annoroad.ms.annoroad-alpha.url}"
)
public
interface
UserFacade {
@PostMapping
(value =
"/user/detail"
)
UserDto detail(
@RequestParam
(
"id"
)
long
id);
}
|
value 。
url 。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持我.
原文链接:https://blog.csdn.net/Susan8888/article/details/95992172 。
最后此篇关于SpringCloud @FeignClient参数的用法解析的文章就讲到这里了,如果你想了解更多关于SpringCloud @FeignClient参数的用法解析的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
前置内容 (1)、微服务理论入门和手把手带你进行微服务环境搭建及支付、订单业务编写 (2)、SpringCloud之Eureka服务注册与发现 (3)、SpringCloud之Zookeeper进行服
SpringCloud-实用篇 API:RestTemplate 跨服务调用的api 创建一个bean @Bean @LoadBalanced //负载均衡 public RestTemplate
微服务学习计划——SpringCloud 在学习并掌握了众多基础框架之后,我们的项目繁杂且难以掌握,那么我们就需要开启一门新的课程,也就是我们常说的微服务架构 随着互联网行业的发展,对服
目录 SpringCloud @FeignClient 参数详解 @FeignClient 注解常用参数 SpringCloud @FeignClient
Config 介绍 Spring Cloud Config项目是一个解决分布式系统的配置管理方案。它包含了Client和Server两个部分,server提供配置文件的存储、以接口的形式将配置文件
gateway跨域配置 gateway允许跨域的配置和zuul的不一样,记录一下。 版本 ?
SpringCloud 提取公共配置 在开发微服务项目时,通常会有很多服务,此时会用配置中心来管理这些服务的配置,但有些服务可能会有相同的配置,比如数据源配置,eureka server注册中心地
1、场景简述 笔者最近用到SpringCloud 服务网关的时候,进行服务网关的路由测试,发现无法路由自己设置的规则,测试的时候如下 通过错误排查发现,原来是路由规则写错了! 路由规则如
现在基于SpringCloud的微服务开发日益流行,网上各种开源项目层出不穷。我们在实际工作中可以参考开源项目实现很多开箱即用的功能,但是必须要遵守一定的约定和规范。 本文结合我们实际的开发中遇到
Feign传参注意 最近在用SpringCloud尝试重构以前的项目,使用Feign客户端组件来调用微服务,经常出现参数传不过去变成null的问题,网上查了一下发现feign在参数上的使用还是有一
SpringCloud 服务注册IP错误 1、错误原因 在服务注册的时候,是使用 spring.cloud.client.ipAddress 这个变量,如果本机有多个网卡,那么可能会把不是本机以
简介: gateway主要是做路由 负载,过滤 主要是替代zuul 1.x 性能比zuul好 zuul是基于 Servlet ,gateway是基于spring-webflux 用的netty+
1、场景 笔者就Zuul网关下实现其负载均衡与熔断机制(雪崩)进行实践,前提是已经导入zuul相关依赖 springboot版本:1.5.9.RELEASE springcloud版本:Da
版本说明 开源软件 版本 springboot 2.1.6.RELEASE jdk
今天做项目的时候,遇到一个问题,如果我调用某个服务的接口,但是这个服务挂了,同时业务要求这个接口的结果是必须的,那我该怎么办呢,答案是通过hystrix,但是又有一点,服务不是平白无故挂的(排除服务
前言 eureka是一种基于rest(具像状态传输)的服务,主要用于aws云中定位服务,以实现中间层服务器的负载平衡和故障转移。本文记录一个简单的服务注册与发现实例。 github地址:http
前言 zuul 是在spring cloud netflix平台上提供动态路由,监控,弹性,安全等边缘服务的框架,是netflix基于jvm的路由器和服务器端负载均衡器,相当于是设备和 netfl
简介 Zuul是Spring Cloud全家桶中的微服务API网关。 所有从设备或网站来的请求都会经过Zuul到达后端的Netflix应用程序 Zuul 主要提供路由(请求转发)和
简介 在分布式系统中,服务与服务之间依赖错综复杂,一种不可避免的情况就是某些服务将会出现失败。Hystrix是一个库,它提供了服务与服务之间的容错功能,主要体现在延迟容错和容错,从
简介 feign是声明式的web service客户端,它让微服务之间的调用变得更简单了,类似controller调用service。Spring Cloud集成了Ribbon和Eureka,
我是一名优秀的程序员,十分优秀!