package com.ycl.config; import com.ycl.interceptor.YYFeignInterceptor; import feign.RequestInterceptor; import org.springframework.context.annotation.Bean; public class YYFeignConfig { /** * 注入拦截器 */ @Bean public RequestInterceptor requestInterceptor(){ return new YYFeignInterceptor(); } }