SpringCloud feign调用 请求头扩展


feign调用有时候会需要在请求头中传入特殊属性,feign提供了这个扩展接口

public interface RequestInterceptor {

  /**
   * Called for every request. Add data using methods on the supplied {@link RequestTemplate}.
   */
  void apply(RequestTemplate template);
}

demo如下

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,有多个是不能保证顺序。


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM