一. 概述
分布式服務(wù)系統(tǒng)中, 服務(wù)間調(diào)用一般用Feign組件實現(xiàn), 一般請求的token都在請求頭上, Feign請求默認(rèn)是不帶token的, 但是我們可以通過攔截器實現(xiàn)Feign請求的請求頭帶上token
二. 編寫攔截器注入
import feign.RequestInterceptor;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class QwFeignConfigure {
@Bean
public RequestInterceptor qwFeignRequestInterceptor() {
return requestTemplate -> {
requestTemplate.header("token", "123456");
};
}
}
踩坑注意
如果你需要動態(tài)獲取token的, 同時服務(wù)引入了Spring-Cloud Hystrix組件, 記得開啟共享上下文配置
hystrix.shareSecurityContext=true