SpringCloud学习–基础–5.6–Feign–扩展
代码位置
https://gitee.com/DanShenGuiZu/learnDemo/tree/master/feign_learn
1、超时
1.1、问题
1.2、解决
首先、Feign的负载均衡底层用的就是Ribbon,所以这里的请求超时配置其实就是配置Ribbon
1.2.1、方式1:YAM配置
在之前的日志配置中加入以下内容
feign:
client:
config:
# 此处写的是 服务名称,针对我们feign微服务的配置
# 此处写的是 default,就是全局配置
producer01:
loggerLevel: full #配置Feign的日志级别,相当于代码配置方式中的Logger
ConnectTimeout: 1000 # Ribbon请求连接的超时时间,超过时间报 Connect timed out
ReadTimeout: 1000 # Ribbon 请求处理的超时时间,超过时间报 Read timed out
1.2.2、方式2:代码配置
package fei.zhou.consumer01.business.hello;
import feign.Request;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* @ClassName: FeignTimeOut
* @Description 超时配置
* @Author feizhou
* @Date 2023/5/26 9:40
* @Verson 1.0
**/
@Configuration
public class FeignTimeOut {
@Bean
public Request.Options options() {
return new Request.Options(5000, 1000, true);
}
}
2、http连接池
2.1、连接池介绍
HTTP连接需要经过三次握手,四次挥手的过程,这是很耗费性能的,所以HTTP连接池帮助我们节省资源的消耗。
2.2、Feign的HTTP客户端支持三种框架
- HttpURLConnection:
- 默认
- 缺乏连接池的支持,在高并发请求情况下服务吞吐量会下降明显
- 可以使用 httpclient 来代替 HttpURLConnection
- HttpClient
- OkHttp
2.3、连接池使用
2.3.1、引入依赖
<!-- HttpClient 客户端 -->
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-httpclient</artifactId>
</dependency>
2.3.2、开启
默认开启
feign:
httpclient:
enabled: true
3、gzip压缩
3.1、介绍
当 Gzip 压缩到一个纯文本文件时,效果是非常明显的,大约可以减少 70%以上的文件大小。·
只有当 Feign 的 HTTP客户端 不是 okhttp 的时候,压缩才会生效。
3.2、开启
server:
compression:
enabled: true # 开启gzip压缩
4、拦截器
在Feign发起请求之前,都会先执行RequestInterceptor拦截器。我们可以在拦截器中进行一些操作。例如, 往request的header里添加认证信息。
4.1、方式1:在代码中 配置拦截器
4.1.1、BasicAuthRequestInterceptor
Feign提供了一个RequestInterceptor接口的实现类BasicAuthRequestInterceptor,可以直接添加Basic认证信息。
@Bean
//Feign提供了一个RequestInterceptor接口的实现类BasicAuthRequestInterceptor,可以直接添加Basic认证信息。
public BasicAuthRequestInterceptor basicAuthRequestInterceptor() {
return new BasicAuthRequestInterceptor("张三", "123456");
}
4.1.2、自定义RequestInterceptor实现类
package fei.zhou.consumer01.business.hello.Interceptor;
import feign.RequestInterceptor;
import feign.RequestTemplate;
/**
* @ClassName: FeignAuthRequestInterceptor
* @Description 自定义拦截器:
* @Author feizhou
* @Date 2023/5/26 11:27
* @Verson 1.0
**/
public class FeignAuthRequestInterceptor implements RequestInterceptor {
@Override
public void apply(RequestTemplate requestTemplate) {
String access_token = "1111111";
requestTemplate.header("Authorization", access_token);
}
}
```
### 4.1.3、测试
```
package fei.zhou.consumer01.business.hello.Interceptor;
import feign.auth.BasicAuthRequestInterceptor;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* @ClassName: 接口权限配置,自定义拦截器
* @Author feizhou
* @Date 2023/5/26 11:27
* @Verson 1.0
**/
@Configuration
public class InterceptorConfig {
@Bean
//Feign提供了一个RequestInterceptor接口的实现类BasicAuthRequestInterceptor,可以直接添加Basic认证信息。
public BasicAuthRequestInterceptor basicAuthRequestInterceptor() {
return new BasicAuthRequestInterceptor("张三", "123456");
}
/**
* 自定义拦截器
*/
@Bean
public FeignAuthRequestInterceptor feignAuthRequestInterceptor() {
return new FeignAuthRequestInterceptor();
}
}
```
![在这里插入图片描述](https://img-blog.csdnimg.cn/4578f4a2f7cf48c5a87a99c73f9c64ca.png#pic_center)
## 4.2、方式2:在YAM中 配置拦截器
```
feign:
client:
config:
# 此处写的是 服务名称,针对我们feign微服务的配置
# 此处写的是 default,就是全局配置
producer01:
loggerLevel: full #配置Feign的日志级别,相当于代码配置方式中的Logger
ConnectTimeout: 1000 # Ribbon请求连接的超时时间,超过时间报 Connect timed out
ReadTimeout: 1000 # Ribbon 请求处理的超时时间,超过时间报 Read timed out
requestInterceptors[0]: #配置拦截器
fei.zhou.consumer01.business.hello.Interceptor.FeignAuthRequestInterceptor
```
# 5、编码器解码器配置
Feign 中提供了自定义的编码解码器设置,同时也提供了多种编码器的实现,比如 Gson、Jaxb、Jackson。
我们可以用不同的编码解码器来处理数据的传输。如果你想传输 XML 格式的数据,可以自定义 XML 编码解码器来实现