这篇文章主要介绍“SpringCloud组件OpenFeign之拦截器怎么创建”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“SpringCloud组件OpenFeign之拦截器怎么创建”文章能帮助大家解决问题。
OpenFeign组件中有这么一个接口。
我们来看一下源码中关于这个接口的介绍。
package feign;
/**
* 可以配置零个或多个请求拦截器,可以用于例如给所有请求添加请求头信息.但是不能保证拦截器的应用顺
* 序。一旦拦截器被应用,就会调用Target类中的apply(RequestTemplate)方法去创建不可变的http请
* 求,该请求通过Client类中的execute(Request, feign.Request.Options)发送。
*
* 拦截器是在设置rest模板参数后才被应用的,因此不能再拦截器中添加参数,比如不能再
* apply(RequestTemplate)方法中给/path/{foo}/bar中的foo设置参数。
* 这个类类似于RequestInterceptor.intercept()方法,可以实现读取、删除或以其他方式改变请求模板
* 的任何部分。
*/
public interface RequestInterceptor {
/**
* 可以被每个请求调用。使用RequestTemplate提供的这个方法可以添加数据。
*/
void apply(RequestTemplate template);
}
通过对该类及方法的注释可以了解到RequestInterceptor接口的apply方法可以对请求进行拦截,可以在该方法中添加请求头信息。
实践一下。
场景如下,使用拦截器在请求头中添加traceId属性,服务端可以获取到该traceId,用于日志追踪。
方式一:创建自定义拦截器+@Configuration
package com.example.rtbootconsumer.config.interceptor;
import com.example.rtbootconsumer.common.utils.TraceIdUtil;
import feign.Request;
import feign.RequestInterceptor;
import feign.RequestTemplate;
import org.apache.commons.lang3.StringUtils;
import org.springframework.context.annotation.Configuration;
/**
* @Description Feign接口请求拦截器
**/
@Configuration
public class FeignRequestInterceptor implements RequestInterceptor {
/**
* @description: 将traceId设置到请求头
*/
@Override
public void apply(RequestTemplate template) {
String traceId = TraceIdUtil.getTraceId();
if (StringUtils.isNotEmpty(traceId)) {
template.header("traceId", traceId);
}
}
}
方式二:创建自定义拦截器+配置@FeignClient注解的configuration属性
package com.example.rtbootconsumer.config.interceptor;
import com.example.rtbootconsumer.common.utils.TraceIdUtil;
import feign.Request;
import feign.RequestInterceptor;
import feign.RequestTemplate;
import org.apache.commons.lang3.StringUtils;
import org.springframework.context.annotation.Configuration;
/**
* @Description Feign接口请求拦截器
**/
public class FeignRequestInterceptor implements RequestInterceptor {
/**
* @description: 将traceId设置到请求头
*/
@Override
public void apply(RequestTemplate template) {
String traceId = TraceIdUtil.getTraceId();
if (StringUtils.isNotEmpty(traceId)) {
template.header("traceId", traceId);
}
}
}
package com.example.rtbootconsumer.feignservice;
import com.example.rtbootconsumer.pojo.User;
import com.example.rtbootconsumer.vo.ResultBody;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.*;
import java.util.List;
@FeignClient(name = "service-provider", path = "/testComm", url = "${addr.url}",configuration = FeignRequestInterceptor.class)
public interface UserFeignService {
@PostMapping(value = "/getUser")
public ResultBody<User> getUser(@RequestBody User user);
}
也可以同时创建多个拦截器实现拦截器链的功能。
此时再创建一个拦截器FeignRequestInterceptor2,用于在请求头中设置属性名为test,值为lalala信息。
方式一:同上
package com.example.rtbootconsumer.config.interceptor;
import com.example.rtbootconsumer.common.utils.TraceIdUtil;
import feign.Request;
import feign.RequestInterceptor;
import feign.RequestTemplate;
import org.apache.commons.lang3.StringUtils;
import org.springframework.context.annotation.Configuration;
/**
* @Description Feign接口请求拦截器
**/
@Configuration
public class FeignRequestInterceptor2 implements RequestInterceptor {
/**
* @description: 将test设置到请求头
*/
@Override
public void apply(RequestTemplate template) {
String traceId = TraceIdUtil.getTraceId();
if (StringUtils.isNotEmpty(traceId)) {
template.header("test", "lalala");
}
}
}
方式二:同上,注意这里设置的@FeignClient注解的configuration属性值是两个拦截器的class数组。
package com.example.rtbootconsumer.feignservice;
import com.example.rtbootconsumer.pojo.User;
import com.example.rtbootconsumer.vo.ResultBody;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.*;
import java.util.List;
@FeignClient(name = "service-provider", path = "/testComm", url = "${addr.url}",configuration = {FeignRequestInterceptor.class,FeignRequestInterceptor2.class})
public interface UserFeignService {
@PostMapping(value = "/getUser")
public ResultBody<User> getUser(@RequestBody User user);
@PostMapping(value = "/testList")
public ResultBody<List<User>> testList(@RequestBody List<User> list);
}
在创建并配置拦截器时有两点需要特别注意。
会拦截所有请求。用方式二时若@FeignClient注解的configuration属性未设置拦截器,那么并不会拦截该接口下所有方法的请求。拦截器只会拦截所有configuration属性值设置了拦截器的接口下所有方法的请求。因此使用方式二更灵活。
若使用方式一去创建多个拦截器时,正如前面注释所讲,不能保证拦截器的执行顺序。
但是使用方式二则可以控制拦截器的执行顺序,拦截器的执行顺序和@FeignClient注解中configuration属性中拦截器的配置顺序有关。
若配置为 {FeignRequestInterceptor.class,FeignRequestInterceptor2.class}),则会先执行FeignRequestInterceptor中的拦截,再执行FeignRequestInterceptor2中的拦截。
若配置为 {FeignRequestInterceptor2.class,FeignRequestInterceptor.class}),则会先执行FeignRequestInterceptor2中的拦截,再执行FeignRequestInterceptor中的拦截。有兴趣的可以试一下。
关于“SpringCloud组件OpenFeign之拦截器怎么创建”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注亿速云行业资讯频道,小编每天都会为大家更新不同的知识点。
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。
原文链接:https://blog.csdn.net/m0_47503416/article/details/123426212