赞
踩
先看下本篇文章全文概览:
一、Spring Cloud Gateway简介
二、gateway在微服务架构中的应用场景
三、Spring Cloud Gateway如何使用
四、Spring Cloud Gateway相关配置详解
在微服务架构日益流行的今天,Spring Cloud Gateway作为新一代的微服务网关,凭借其基于Spring WebFlux技术的强大性能,成为了替代Zuul的有力竞争者。WebFlux采用响应式编程框架Reactor,底层使用Netty通信框架,而传统的Zuul则依赖Tomcat容器和传统的Servlet IO处理模型。想深入了解WebFlux和Netty的同学可以查阅相关资料,这些技术目前非常热门。
当前非常热门的AI对话,后端如果使用java编写,实现的响应式编程都是使用的WebFlux实现!
比如我自己制作的这款AI聚合工具:https://ai.quanyouhulian.com,后端就是使用java开发的,再使用webflux进行响应式输出!
引用官方文档,我们来看看Spring Cloud Gateway的强大特性:
基于Spring Framework 5、Project Reactor和Spring Boot 2.0构建
能够匹配任何请求属性上的路由
路由特定的Predicates和Filters
集成断路器(Circuit Breaker)
支持Spring Cloud DiscoveryClient
易于编写的Predicates和Filters
请求速率限制
路径重写
Spring Cloud Gateway不仅功能丰富,还提供了动态路由、限流等高级功能,与Zuul相比,最大的区别在于底层通信框架的实现。
在微服务架构中,网关是下层服务的守护者,负责路由、限流和路径重写等任务。下面的架构图直观展示了Spring Cloud Gateway在整个架构中的重要作用。
首先,新建一个Spring Boot工程,添加以下Maven依赖:
<dependency\> <groupId\>com.alibaba.cloud</groupId\> <artifactId\>spring-cloud-starter-alibaba-nacos-discovery</artifactId\> </dependency\> <dependency\> <groupId\>org.springframework.cloud</groupId\> <artifactId\>spring-cloud-starter-gateway</artifactId\> </dependency\> <dependency\> <groupId\>org.springframework.boot</groupId\> <artifactId\>spring-boot-starter-webflux</artifactId\> </dependency\> <dependency\> <groupId\>org.springframework.boot</groupId\> <artifactId\>spring-boot-starter-test</artifactId\> <scope\>test</scope\> </dependency\>
修改配置文件如下:
server: port: 15010 spring: cloud: nacos: discovery: \# 这里改成你自己的nacos地址,使用公网ip+端口 server-addr: 118.21.30.41:8848 gateway: discovery: locator: enabled: false lowerCaseServiceId: true routes: \- id: provider uri: lb://winter-nacos-provider predicates: \- Path=/provider/\*\* filters: \- StripPrefix=1 \- id: consumer uri: lb://winter-nacos-consumer predicates: \- Path=/consumer/\*\* filters: \- StripPrefix=1 application: name: winter-gateway
在启动类中加入注解 @EnableDiscoveryClient
@EnableDiscoveryClient @SpringBootApplication public class SpringCloudGatewayApplication { public static void main(String\[\] args) { SpringApplication.run(SpringCloudGatewayApplication.class, args); } }
启动服务:spring-cloud-nacos-consumer,spring-cloud-nacos-provider,spring-cloud-gateway
在浏览器中输入:http://127.0.0.1:15010/consumer/nacos/echo/hello,
得到返回值:Hello Nacos Discovery hello
在配置文件中加入以下内容即可快速解决跨域拦截:
spring: cloud: gateway: globalcors: cors-configurations: '\[/\*\*\]': allowedOrigins: "\*" allowedMethods: \- GET \- POST \- PUT \- DELETE
以下是一份标准的gateway我们使用的yml配置文件
server: port: 15010 spring: cloud: nacos: discovery: server-addr: 118.21.30.41:8848 gateway: discovery: locator: enabled: false lowerCaseServiceId: true routes: \- id: provider uri: lb://winter-nacos-provider predicates: \- Path=/provider/\*\* filters: \- StripPrefix=1 \- id: consumer uri: lb://winter-nacos-consumer predicates: \- Path=/consumer/\*\* filters: \- StripPrefix=1 application: name: winter-gateway
id:自定义的路由ID,需保持唯一
uri:目标服务地址
predicates:路由条件,接受一个输入参数,返回布尔值
filters:用于修改请求、响应内容,StripPrefix=1表示截取路径的个数为1
例如,当访问地址http://localhost:8080/provider/nacos/echo/hello时,会自动路由到上游地址http://winter-nacos-provider/nacos/echo/hello。
关于Spring Cloud Gateway的更多详细配置,可以参考资料:https://www.cnblogs.com/crazymakercircle/p/11704077.html
本篇文章介绍了Spring Cloud Gateway的基本使用和配置。下一篇文章将详细讲解如何在网关层集成Swagger文档以及进行登录权限验证,敬请期待。
希望这篇文章能帮助你更好地理解和使用Spring Cloud Gateway,实现更高效的微服务架构!
黑客&网络安全如何学习
今天只要你给我的文章点赞,我私藏的网安学习资料一样免费共享给你们,来看看有哪些东西。
攻击和防守要学的东西也不少,具体要学的东西我都写在了上面的路线图,如果你能学完它们,你去就业和接私活完全没有问题。
网上虽然也有很多的学习资源,但基本上都残缺不全的,这是我自己录的网安视频教程,上面路线图的每一个知识点,我都有配套的视频讲解。
内容涵盖了网络安全法学习、网络安全运营等保测评、渗透测试基础、漏洞详解、计算机基础知识等,都是网络安全入门必知必会的学习内容。
(都打包成一块的了,不能一一展开,总共300多集)
因篇幅有限,仅展示部分资料,需要点击下方链接即可前往获取
CSDN大礼包:《黑客&网络安全入门&进阶学习资源包》免费分享
技术文档也是我自己整理的,包括我参加大型网安行动、CTF和挖SRC漏洞的经验和技术要点,电子书也有200多本,由于内容的敏感性,我就不一一展示了。
因篇幅有限,仅展示部分资料,需要点击下方链接即可前往获取
CSDN大礼包:《黑客&网络安全入门&进阶学习资源包》免费分享
“工欲善其事必先利其器”我为大家总结出了最受欢迎的几十款款黑客工具。涉及范围主要集中在 信息收集、Android黑客工具、自动化工具、网络钓鱼等,感兴趣的同学不容错过。
还有我视频里讲的案例源码和对应的工具包,需要的话也可以拿走。
因篇幅有限,仅展示部分资料,需要点击下方链接即可前往获取
CSDN大礼包:《黑客&网络安全入门&进阶学习资源包》免费分享
最后就是我这几年整理的网安方面的面试题,如果你是要找网安方面的工作,它们绝对能帮你大忙。
这些题目都是大家在面试深信服、奇安信、腾讯或者其它大厂面试时经常遇到的,如果大家有好的题目或者好的见解欢迎分享。
参考解析:深信服官网、奇安信官网、Freebuf、csdn等
内容特点:条理清晰,含图像化表示更加易懂。
内容概要:包括 内网、操作系统、协议、渗透测试、安服、漏洞、注入、XSS、CSRF、SSRF、文件上传、文件下载、文件包含、XXE、逻辑漏洞、工具、SQLmap、NMAP、BP、MSF…
因篇幅有限,仅展示部分资料,需要点击下方链接即可前往获取
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。