spring cloud中代理服务器zuul的使用

主流网关:

    zuul

    kong 基于nginx的API Gateway

    nginx+lua

1、新建项目,选择eureka discovery 和zuul

 

2、启动类中增加 @EnableZuulProxy

 

3、修改配置文件后缀名为yml,并在配置中增加端口号、应用名称和注册中心地址,如下:

    server:

     port: 9000

    spring:

     application:

        name: api-gateway

 

    eureka:

     client:

        service-url:

         defaultZone: http://localhost:7880/eureka #注册中心地址

        

4、访问

http://192.168.136.128:8651/api/v1/orderfeignhystrix/save?userId=2&productId=2

修改为

http://192.168.136.128:9000/orderfeignhystrix-service/api/v1/orderfeignhystrix/save?userId=2&productId=2

 

 

http://192.168.136.128:8765/api/v1/product/list

修改为

http://192.168.136.128:9000/product-service/api/v1/product/list

 

5、自定义路由转发

zuul:

routes:

product-service: /apigateway/**

    

访问    

http://192.168.136.128:9000/apigateway/api/v1/product/list

 

6、环境隔离:

            需求 :不想让默认的服务对外暴露接口

                product-service/api/v1/product/list

 

            配置:

            zuul:

                ignored-patterns:

                    - /*-service/api/v1/product/list

可以访问

http://192.168.136.128:9000/apigateway/api/v1/product/list

不可以访问

http://192.168.136.128:9000/product-service/api/v1/product/list        

原生地址仍旧可以访问

http://192.168.136.128:8765/api/v1/product/list

 

7、三个注意事项:

    1)、路由名称定义问题

        路由映射重复覆盖问题

        zuul:

         routes:

            product-service: /apigateway/**

            orderfeignhystrix-service-service: /apigateway/**

        这样会覆盖,product-service会无法访问

        可以增加子目录来区分

        zuul:

         routes:

            product-service: /apigateway/product/**

            orderfeignhystrix-service-service: /apigateway/order/**

    2)、Http请求头过滤问题(在 routers类中可以看到这个定义sensitiveHeaders)

        默认session等请求是关闭的

        "Cookie", "Set-Cookie", "Authorization"

        在yml文件中增加zuul的routes属性sensitiveHeaders:

        修改后为

        zuul:

         routes:

            product-service: /apigateway/product/**

            orderfeignhystrix-service: /apigateway/order/**

         ignored-patterns:

            - /*-service/api/v1/product/list

         sensitiveHeaders:

        测试方法:在order服务的controller的save中增加代码,并使用postman测试,增加如下代码

         String token = httpServletRequest.getHeader("token");

String session=httpServletRequest.getHeader("session");

System.out.println("token is:"+token);

System.out.println("session is:"+session);

        使用postman进行测试

            http://192.168.136.128:9000/orderfeignhystrix-service/api/v1/orderfeignhystrix/save?userId=2&productId=2

            增加header中的session和token属性

            

    3)、过滤器执行顺序问题 ,过滤器的order值越小,越先执行

        

spring cloud中代理服务器zuul的使用的更多相关文章

  1. spring cloud 学习(6) - zuul 微服务网关

    微服务架构体系中,通常一个业务系统会有很多的微服务,比如:OrderService.ProductService.UserService...,为了让调用更简单,一般会在这些服务前端再封装一层,类似下 ...

  2. Spring Cloud中五大神兽总结(Eureka/Ribbon/Feign/Hystrix/zuul)

    Spring Cloud中五大神兽总结(Eureka/Ribbon/Feign/Hystrix/zuul) 1.Eureka Eureka是Netflix的一个子模块,也是核心模块之一.Eureka是 ...

  3. Spring Cloud中Feign如何统一设置验证token

    代码地址:https://github.com/hbbliyong/springcloud.git 原理是通过每个微服务请求之前都从认证服务获取认证之后的token,然后将token放入到请求头中带过 ...

  4. Spring Cloud 入门 之 Zuul 篇(五)

    原文地址:Spring Cloud 入门 之 Zuul 篇(五) 博客地址:http://www.extlight.com 一.前言 随着业务的扩展,微服务会不对增加,相应的其对外开放的 API 接口 ...

  5. Spring Cloud 服务网关Zuul

    Spring Cloud 服务网关Zuul 服务网关是分布式架构中不可缺少的组成部分,是外部网络和内部服务之间的屏障,例如权限控制之类的逻辑应该在这里实现,而不是放在每个服务单元. Spring Cl ...

  6. Spring Cloud Gateway VS Zuul 比较,怎么选择?

    Spring Cloud Gateway 是 Spring Cloud Finchley 版推出来的新组件,用来代替服务网关:Zuul. 那 Spring Cloud Gateway 和 Zuul 都 ...

  7. Spring Cloud 网关服务 zuul 三 动态路由

    zuul动态路由 网关服务是流量的唯一入口.不能随便停服务.所以动态路由就显得尤为必要. 数据库动态路由基于事件刷新机制热修改zuul的路由属性. DiscoveryClientRouteLocato ...

  8. 详解Spring Cloud中Hystrix 线程隔离导致ThreadLocal数据丢失

    在Spring Cloud中我们用Hystrix来实现断路器,Zuul中默认是用信号量(Hystrix默认是线程)来进行隔离的,我们可以通过配置使用线程方式隔离. 在使用线程隔离的时候,有个问题是必须 ...

  9. Spring Cloud中负载均衡器概览

    在上篇文章中(RestTemplate的逆袭之路,从发送请求到负载均衡)我们完整的分析了RestTemplate的工作过程,在分析的过程中,我们遇到过一个ILoadBalancer接口,这个接口中有一 ...

随机推荐

  1. MongoDB之安装部署

    一.安装MongoDB 在安装MongoDB之前,应该先把MongoDB官方网站上下载下来,下载的地址如下: https://www.mongodb.com/download-center 下载完毕之 ...

  2. 【模板】分治FFT

    蒟蒻写题解实在不易 前置 方法一:\(Cdq+NTT\) 方法二:多项式求逆 NTT总结:多项式求逆总结 方法一 \(Cdq+NTT\): \[f_i=\sum\limits_{j=1}^i f_{i ...

  3. 【HDU4622】Reincarnation

    [HDU4622]Reincarnation 一眼似乎不可做,但发现\(strlen(x)\)很小,暴力\(O(n^2)\)预处理每个区间\((l,r)\),查询时\(O(1)\)输出就好了 #inc ...

  4. 2019-06-03 校内python模拟题解(所有非原题)

    一起来女装吧 本题改编自USACO(USA Computing Olympiad) 1.1节的第一题 (感谢lsy同学对本题题面的贡献) 直接计算就好了 chr:将ASCII码转成字符 ord:字符对 ...

  5. 查看日志tail命令

    打开终端,连接jboss: 命令: tail -f -n 500 /var/log/wildfly/wrapper.log

  6. [游戏开发]LÖVE2D(1):引擎介绍

    什么是LÖVE引擎 Love引擎是一个非常棒的框架,你可以用来在Lua制作2D游戏.它是免费的,开源的,适用于Windows,Mac OS X,Linux,Android和iOS. 怎么安装 在官网下 ...

  7. legend3---19、要更多的从服务器端控制元素的显示和隐藏,而不要是页面端

    legend3---19.要更多的从服务器端控制元素的显示和隐藏,而不要是页面端 一.总结 一句话总结: 这样可以控制很多页面端的非法操作 1.html标签中data方式的数据,修改之后在标签上只显示 ...

  8. OpenJudge计算概论-整数的个数

    /*========================================================== 整数的个数 总时间限制: 1000ms 内存限制: 65536kB 描述 给定 ...

  9. 在Linux下使用LLVM Clang以及Blocks

    可以从这个链接下载:http://llvm.org/releases/download.html sudo apt-get install llvm sudo apt-get install clan ...

  10. VBA基础出发

    一.什么是VBA,学习的原因是什么. Visual Basic for Applicaion(VBA)是Visual Basic的一种宏语言,主要用来扩展Windows的应用程序功能.在日常生活中,使 ...