spring cloud-构建微服务架构的网关(API GateWay)

在我们前面的博客中讲到,当服务A需要调用服务B的时候,只需要从Eureka中获取B服务的注册实例,然后使用Feign来调用B的服务,使用Ribbon来实现负载均衡,但是,当我们同时向客户端暴漏多个服务的时候,客户端怎么调用我们暴漏的服务了,如果我们还想加入安全认证,权限控制,过滤器以及动态路由等特性了,那么就需要使用Zuul来实现API GateWay了,下面,我们先来看下Zuul怎么使用。

一、加入Zuul的依赖

[html]  view plain  copy
  1. <dependency>  
  2.             <groupId>org.springframework.cloud</groupId>  
  3.             <artifactId>spring-cloud-starter-zuul</artifactId>  
  4.         </dependency>  
  5.         <dependency>  
  6.             <groupId>org.springframework.cloud</groupId>  
  7.             <artifactId>spring-cloud-starter-eureka</artifactId>  
  8.         </dependency>  
由于,我们需要将Zuul服务注册到Eureka Server上,同时从Eureka Server上发现注册的服务,所以这里我们加上了Eureka的依赖。

二、在应用Application主类上开启Zuul支持

[java]  view plain  copy
  1. @SpringBootApplication  
  2. @EnableZuulProxy // 使用@EnableZuulProxy来开启Zuul的支持,如果你不想使用Zuul提供的Filter和反向代理的功能的话,此处可以使用@EnableZuulServer注解  
  3. public class ZuulApplication {  
  4.   public static void main(String[] args) {  
  5.     SpringApplication.run(ZuulApplication.class, args);  
  6.   }  
  7. }  
三、在application.yml中增加Zuul的基础配置信息

[java]  view plain  copy
  1. spring:  
  2.   application:  
  3.     name: gateway-zuul # 应用名  
  4. server:  
  5.   port: 8768 #Zuul Server的端口号  
  6. eureka:  
  7.   client:  
  8.     service-url:  
  9.       defaultZone: http://localhost:8761/eureka  
  10.   instance:  
  11.     prefer-ip-address: true  
四、在application.yml中增加服务路由配置

前提:在Eureka Server已经注册了2个服务,分别是:springboot-h2-service和springboot-rest-template-feign,其中springboot-rest-template-feign服务会调用springboot-h2-service服务,springboot-rest-template-feign服务是我们对外提供的服务,也就是说,springboot-rest-template-feign服务是我们暴漏给客户端调用的。

[java]  view plain  copy
  1. # 路由配置方式一  
  2. #zuul:  
  3. #  routes:  
  4. #    springboot-rest-template-feign: /templateservice/** #所有请求springboot-rest-template-feign的请求,都会被拦截,并且转发到templateservice上  
  5.   
  6.   
  7. # 路由配置方式二  
  8. zuul:  
  9.   routes:  
  10.     api-contract: # 其中api-contract是路由名称,可以随便定义,但是path和service-id需要一一对应  
  11.       path: /templateservice/**  
  12.       service-id: springboot-rest-template-feign # springboot-rest-template-feign为注册到Eureka上的服务名  
  13. ribbon:  
  14.   NFLoadBalancerRuleClassName: com.netflix.loadbalancer.RoundRobinRule # 配置服务端负载均衡策略   
五、验证

下面我们就可以来进行验证了,在浏览器中输入:http://localhost:8768/templateservice/template/1就可以看到测试结果了。Zuul的基本使用就这些,关于Filter以及高可用,请见在后面的博客中。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值