背景
在第三方API对接中通常所有接口都需要在Header或Param放置固定参数(Token、开发者Key等),因为是SpringCloud开发,一般HTTP工具采用Feign。如果选择每个方法都copy相应字段,显得较为冗余。这个时候就可以使用Feign的Interceptor功能。
实现
Talk is cheap,show me the code.
下面选择一个具体场景,需要某个FeignClient内所有接口都带上一个查询字符串:name=Allen
@FeignClient(value = "example", url = "https://api.xxx.com",configuration = MyConfig.class)
public interface ExampleClient {
@PutMapping(value = "/a")
AddRes add(@RequestParam("id") String id);
@DeleteMapping(value = "/b")
DelRes delete(@RequestParam("id") String id);
}
在@FeignClient注解的configuration参数指定一个配置类,下面是这个配置类的实现
public class MyConfig {
@Bean("myInterceptor")
public RequestInterceptor getRequestInterceptor() {