fuliqi
2024-07-31 71e6dc7824780c223e594add97c09773335e8af1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.ycl.interceptor;
 
import feign.RequestInterceptor;
import feign.RequestTemplate;
 
/**
 * 海康请求拦截器
 */
public class HKFeignInterceptor implements RequestInterceptor {
    @Override
    public void apply(RequestTemplate requestTemplate) {
        System.out.println("wodefa");
    }
}