详解spring cloud构建微服务架构的网关(API GateWay)
前言
在我们前面的博客中讲到,当服务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就可以看到测试结果了。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
spring boot项目同时传递参数和文件的多种方式代码演示
这篇文章主要介绍了spring boot项目同时传递参数和文件的多种方式,在开发接口中,遇到了需要同时接收参数和文件的情况,可以有多种方式实现文件+参数的接收,这里基于spring boot 3 + vue 3 + axios,做一个简单的代码演示,需要的朋友可以参考下2023-06-06
Java关于后端怎么去接收Date、LocalDateTime类型的参数详解
这篇文章主要介绍了java关于后端怎么去接收Date、LocalDateTime类型的参数,文中有详细的代码流程,对我们学习或工作有一定的参考价值,需要的朋友可以参考下2023-06-06
Java使用@PathVariable获取路径参数的代码详解
主要用于处理URL中的动态部分,当你的URL有一部分是动态改变的,比如/users/{id},那么你可以使用@PathVariable来匹配这个动态部分,本文通过代码示例给大家介绍了Java使用@PathVariable获取路径参数的方法,需要的朋友可以参考下2025-07-07


最新评论