当前位置: 首页 > article >正文

webContextUnify的作用

为了更好理解spring.cloud.sentinel.webContextUnify的作用,我直接提供一个详细的场景,包括完整的目录结构和URL路径。

假设我们有两个微服务应用:用户服务(UserService)和商品服务(ProductService)。它们的目录结构和URL路径如下:

  1. UserService:
/userapp
├── api
│   ├── users
│   │   ├── list
│   │   └── details
│   └── auth
│       ├── login
│       └── logout
└── internal
    └── health
  1. ProductService:
/productapp
├── api
│   ├── products
│   │   ├── list
│   │   └── details
│   └── categories
│       └── list
└── internal
    └── health

现在,让我们看看在不同 webContextUnify 设置下,Sentinel 如何处理这些路径:

当 webContextUnify = true (默认)

在这种情况下,Sentinel 会忽略根路径(/userapp 和 /productapp),但保留其余的路径结构。

UserService 路径:

/userapp/api/users/list -> /api/users/list
/userapp/api/users/details -> /api/users/details
/userapp/api/auth/login -> /api/auth/login
/userapp/internal/health -> /internal/health

ProductService 路径:

/productapp/api/products/list -> /api/products/list
/productapp/api/products/details -> /api/products/details
/productapp/api/categories/list -> /api/categories/list
/productapp/internal/health -> /internal/health

在这种配置下:
"/internal/health" 的规则会应用于两个服务的健康检查端点。

当 webContextUnify = false

此时,Sentinel 会考虑完整的URL路径,包括根路径。

UserService 路径保持不变:

/userapp/api/users/list
/userapp/api/users/details
/userapp/api/auth/login
/userapp/internal/health

ProductService 路径也保持不变:

/productapp/api/products/list
/productapp/api/products/details
/productapp/api/categories/list
/productapp/internal/health

在这种配置下:
健康检查端点 "/userapp/internal/health""/productapp/internal/health" 需要单独配置。

实际应用场景

  1. 使用 webContextUnify = true:
  • 适合当你想为多个服务的相似功能设置统一的规则。
  • 例如,可以为所有 “/api/*/list” 端点设置通用的限流规则,无论它们属于哪个服务。
  1. 使用 webContextUnify = false:
  • 适合当你需要精确控制每个服务的每个端点。
  • 例如,你可能想对 UserService 的登录接口 (/userapp/api/auth/login)
    设置特定的限流规则,而不影响其他服务。

http://www.kler.cn/a/282002.html

相关文章:

  • ArcGIS Pro ADCore DAML
  • vue实现展示并下载后端返回的图片流
  • 二、神经网络基础与搭建
  • 计算机组成与原理(2) basic of computer architecture
  • 开源科学工程技术软件介绍 – EDA工具KLayout
  • 论文笔记(五十六)VIPose: Real-time Visual-Inertial 6D Object Pose Tracking
  • mac安装java17(jdk17)
  • Netty+WebSocket实现高并发网络编程
  • 【Go - interface, 强类型语言中的任意类型 】
  • 【项目日记】高并发内存池---实现线程缓存
  • Linux学习记录(十三)----信号
  • 使用 JavaScript 实现图片上传
  • 视源CVTE嵌入式面试题及参考答案(200+面试题,17万字)
  • TCP vs UDP:揭秘可靠性与效率之争
  • Linux 软件包管理器yum 自动化构建工具-make/makefile
  • 游卡,三七互娱,得物,顺丰,快手,oppo,莉莉丝,康冠科技,途游游戏,埃科光电25秋招内推
  • PN结--
  • R 语言学习教程,从入门到精通,R 绘图饼图(23)
  • vector容器---性能优化
  • 人工智能算力FP32、FP16、TF32、BF16、混合精度解读
  • 深度解析:防火墙技术在网络安全中的应用与发展
  • Java的GC(Garbage Collection,垃圾回收)
  • 软件测试——测试分类
  • K8S声明式的管理方式
  • RocketMQ第5集
  • Oracle使用手册