欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-12-14 16:04:46
前言 在我们前面的博客中讲到,当服务a需要调用服务b的时候,只需要从eureka中获取b服务的注册实例,然后使用feign来调用b的服务,使用ribbon来实现负载均...

前言

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

一、加入zuul的依赖

<dependency> 
      <groupid>org.springframework.cloud</groupid> 
      <artifactid>spring-cloud-starter-zuul</artifactid> 
    </dependency> 
    <dependency> 
      <groupid>org.springframework.cloud</groupid> 
      <artifactid>spring-cloud-starter-eureka</artifactid> 
    </dependency> 

由于,我们需要将zuul服务注册到eureka server上,同时从eureka server上发现注册的服务,所以这里我们加上了eureka的依赖。

二、在应用application主类上开启zuul支持

@springbootapplication 
@enablezuulproxy // 使用@enablezuulproxy来开启zuul的支持,如果你不想使用zuul提供的filter和反向代理的功能的话,此处可以使用@enablezuulserver注解 
public class zuulapplication { 
 public static void main(string[] args) { 
  springapplication.run(zuulapplication.class, args); 
 } 
} 

三、在application.yml中增加zuul的基础配置信息

spring: 
 application: 
  name: gateway-zuul # 应用名 
server: 
 port: 8768 #zuul server的端口号 
eureka: 
 client: 
  service-url: 
   defaultzone: http://localhost:8761/eureka 
 instance: 
  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服务是我们暴漏给客户端调用的。

# 路由配置方式一 
#zuul: 
# routes: 
#  springboot-rest-template-feign: /templateservice/** #所有请求springboot-rest-template-feign的请求,都会被拦截,并且转发到templateservice上 
 
 
# 路由配置方式二 
zuul: 
 routes: 
  api-contract: # 其中api-contract是路由名称,可以随便定义,但是path和service-id需要一一对应 
   path: /templateservice/** 
   service-id: springboot-rest-template-feign # springboot-rest-template-feign为注册到eureka上的服务名 
ribbon: 
 nfloadbalancerruleclassname: com.netflix.loadbalancer.roundrobinrule # 配置服务端负载均衡策略  

五、验证

下面我们就可以来进行验证了,在浏览器中输入:http://localhost:8768/templateservice/template/1就可以看到测试结果了。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

上一篇:

下一篇: