From 0f960e3a7884a90ae9e4948023b4d90714ba9fd2 Mon Sep 17 00:00:00 2001 From: XSX <732209117@qq.com> Date: Fri, 20 Mar 2026 14:46:31 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=AD=A3=E8=B7=AF=E7=94=B1?= =?UTF-8?q?=E7=A4=BA=E4=BE=8B=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/high-performance/message-queue/rabbitmq-questions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/high-performance/message-queue/rabbitmq-questions.md b/docs/high-performance/message-queue/rabbitmq-questions.md index 18ab3b57943..343e69e17b4 100644 --- a/docs/high-performance/message-queue/rabbitmq-questions.md +++ b/docs/high-performance/message-queue/rabbitmq-questions.md @@ -130,7 +130,7 @@ RabbitMQ 常用的 Exchange Type 有 **fanout**、**direct**、**topic**、**hea **示例**: -- 路由键为 `"com.rabbitmq.client"` 的消息会同时路由到绑定 `"*.rabbitmq.*"` 和 `"*.client.#"` 的队列 +- 路由键为 `"com.rabbitmq.client"` 的消息会同时路由到绑定 `"*.rabbitmq.*"` 和 `"#.client.#"` 的队列 - 路由键为 `"order.china.beijing"` 的消息会路由到绑定 `"order.china.*"` 的队列 **4、headers(不推荐)**