美文网首页码农的世界程序员程序员技术栈
把代码写成诗系列--网关Zuul

把代码写成诗系列--网关Zuul

作者: 把代码写成诗 | 来源:发表于2019-03-12 14:57 被阅读71次

    定义

    顾名思义,网关的作用就是转发和路由,可以把不同路径的请求转发到相对应的服务去,比如 /api-a 转发到 cloud-service,比如 /api-b 转发到 cloud-service2 上。Zuul的作用包括 认证,洞察,压力测试,金丝雀测试,动态路由,服务迁移,负载脱落,安全,静态响应处理,主动/主动流量管理。

    例子

    例子源码请参见 https://github.com/githubweili/springcloud/tree/master/spring-cloud-learn/cloud-zuul

    首先 pom 文件增加依赖 spring-cloud-starter-netflix-zuul

    然后是配置文件 application.yml,routes下面定义两个route api-a和 api-b, path 代表的是客服端请求的路径规则,servicedId表示该route转发的路径服务。

    这时候启动两台服务 cloud-service 和 cloud-servcie2,启动 cloud-zuul 服务。访问 localhost:8007/api-a/hello?name=test 响应的是 hello test i am from port 8007 说明这时候路由的路径是 cloud-service。 访问 localhost:8007/api-b/hello?name=test 响应的是 hello,2 ,说明路由的路径是 cloud-service2。

    Zulu过滤器

    java 代码 MyFilter.java,filterType 返回一个字符串的类型,pre:路由之前,routing:路由之时,post:路由之后,error:发生错误时调用。filterOrder:时间过滤顺序。shouldFilter:需要过滤的逻辑。run:具体的逻辑业务。比如例子就是为响应加上了header,这时候访问localhost:8007/api-a/hello?name=test,可以看到请求的响应头,header:test。

    作者:把代码写成诗

    版权所有,转载请注明出处

    欢迎关注,沟通交流  https://github.com/githubweili

    相关文章

      网友评论

        本文标题:把代码写成诗系列--网关Zuul

        本文链接:https://www.haomeiwen.com/subject/wifnpqtx.html