标签:特殊 current 添加 eth demo 特殊属性 inpu token tor
feign调用有时候会需要在请求头中传入特殊属性,feign提供了这个扩展接口
public interface RequestInterceptor {
/**
* Called for every request. Add data using methods on the supplied {@link RequestTemplate}.
*/
void apply(RequestTemplate template);
}
public void apply(RequestTemplate input) {
input.header("X-Auth";, currentToken);
}
接口说明:
Zero or more RequestInterceptors may be configured for purposes such as adding headers to
all requests. No guarantees are give with regards to the order that interceptors are applied.
RequestInterceptors 用于在request上添加header,有多个是不能保证顺序。
标签:特殊 current 添加 eth demo 特殊属性 inpu token tor
原文地址:https://www.cnblogs.com/mengjianzhou/p/12765653.html