9

我有许多客户已经定义了“全局”RequestInterceptor。对于其中一个客户,我需要排除这个“全局”拦截器。是否可以覆盖特定 FeignClient 的全套 RequestInterceptor?

@FeignClient(value = "foo", configuration = FooClientConfig.class)
public interface FooClient {
//operations
}

@Configuration
public class FooClientConfig{

//How do I exclude global interceptors from this client configuration?
}

使用的spring-cloud-netflix版本是1.1.0 M5

4

2 回答 2

3

似乎没有简单的方法来覆盖全局拦截器。我认为你可以这样做:

@Configuration
public class FooClientConfig{

@Bean
RequestInterceptor globalRequestInterceptor() {
    return template -> {
        if (template.url().equals("/your_specific_url")) {
            //don't add global header for the specific url
            return;
        }

        //add header for the rest of requests
        template.header(AUTHORIZATION, String.format("Bearer %s", token));
    };
}
}
于 2018-05-04T05:22:31.423 回答
0

解决此问题的一种增强方法是将自定义标头传递给您的请求,例如:

@PostMapping("post-path")
ResponseEntity<Void> postRequest(@RequestHeader(HEADER_CLIENT_NAME) String feignClientName, @RequestBody RequestBody requestBody);

我只想为这个假装客户端在拦截器中设置标题。在设置标头之前,拦截器首先检查 HEADER_CLIENT_NAME 标头是否存在并具有所需的值:

private boolean criteriaMatches(RequestTemplate requestTemplate) {
    Map<String, Collection<String>> headers = requestTemplate.headers();
    return headers.containsKey(HEADER_CLIENT_NAME)
        && headers.get(HEADER_CLIENT_NAME).contains("feign-client-name");
}

因此,您可以在设置基本身份验证之前进行检查。在拦截器中:

@Override
public void apply(RequestTemplate template) {
    if (criteriaMatches(template)) {
        /*apply auth header*/
    }
}

这样,其他 feign 客户端的请求就不会被这个拦截器操纵了。

最后,我将 feignClientName 设置为请求:

feignClient.postRequest("feign-client-name", postBody);
于 2020-03-03T14:46:54.100 回答