码迷,mamicode.com
首页 > 编程语言 > 详细

我爱java系列---【微服务中feign拦截器的使用】

时间:2019-09-01 16:59:24      阅读:281      评论:0      收藏:0      [点我收藏+]

标签:component   span   web   strong   err   https   java   oauth   OAuth2   

1.为什么要用feign拦截器?

技术图片

 作用:由于服务整合了oauth2,在被调用时需要传递令牌才能正常调用,feign拦截器的作用就是为了在服务之间传递令牌。

2.feign拦截器怎么用?

(1)创建拦截器(一般定义在全局中)

在changgou_common服务中创建一个com.changgou.interceptor.FeignInterceptor拦截器,并将所有头文件数据再次加入到Feign请求的微服务头文件中,代码如下:

@Component
public class FeignInterceptor implements RequestInterceptor {

    @Override
    public void apply(RequestTemplate requestTemplate) {

        RequestAttributes requestAttributes = RequestContextHolder.getRequestAttributes();

        if (requestAttributes!=null){

            HttpServletRequest request = ((ServletRequestAttributes) requestAttributes).getRequest();
            if (request!=null){
                Enumeration<String> headerNames = request.getHeaderNames();
                if (headerNames!=null){
                    while (headerNames.hasMoreElements()){
                        String headerName = headerNames.nextElement();
                        if (headerName.equals("authorization")){
                            String headerValue = request.getHeader(headerName);//Bearer jwt
                            requestTemplate.header(headerName,headerValue);//向下传递令牌
                        }
                    }
                }
            }
        }
        }
}

2) 更改changgou_order_web启动类,添加拦截器声明

@Bean
public FeignInterceptor feignInterceptor(){
    return new FeignInterceptor();
}

 

我爱java系列---【微服务中feign拦截器的使用】

标签:component   span   web   strong   err   https   java   oauth   OAuth2   

原文地址:https://www.cnblogs.com/hujunwei/p/11442463.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!