标签:提供者 family images cto 注册 regular ref water 传统
Spring cloud zuul对Netflix zuul进行了封装实现新建spring boot项目demo-springcloud-api-gateway,创建启动类ZuulApplication,@EnableZuulProxy启动网关代理的配置,它也是组合注解,启用了服务注册发现和熔断器
项目关键依赖spring-cloud-starter-zuul对网关支持
配置文件application.properties,路由配置主要有传统路由和服务路由,传统路由就是ip和端口这种,服务路由就是使用服务名作为路由。传统路由我们配置为/tradition/**,服务路由配置为/serviceToClient和serviceToConsumer
启动注册中心,启动服务提供者,启动demo-springcloud-api-gateway,浏览器访问http://localhost:4441/tradition/hello和http://localhost:4441/serviceToClient/hello和http://localhost:4441/serviceToConsumer/hello和http://localhost:4441/demo-springcloud-consumer/hello均正常访问
干货分享微服务spring-cloud(6.Api网关服务zuul)
标签:提供者 family images cto 注册 regular ref water 传统
原文地址:http://blog.51cto.com/11290909/2071521