
Feign
S梦天涯S
天道酬勤
展开
-
Feign请求拦截器
Feign 支持请求拦截器,在发送请求前,可以对发送的模板进行操作,例如设置请求头等属性,自定请求拦截器需要实现 feign.RequestInterceptor 接口,该接口的方法 apply 有参数 template ,该参数类型为 RequestTemplate,我们可以根据实际情况对请求信息进行调整,示例如下: import com.sobot.util.TokenUtils; import feign.RequestInterceptor; import feign.RequestTemp.原创 2021-04-16 17:11:22 · 1709 阅读 · 0 评论 -
使用Fegin调第三方接口
<!-- https://mvnrepository.com/artifact/com.netflix.feign/feign-okhttp --> <dependency> <groupId>com.netflix.feign</groupId> <artifactId>feign-okhttp</artifactId> <version&.原创 2020-10-27 15:03:50 · 230 阅读 · 0 评论