From 85b1d16ae99cda3a9ecdc89561dd5e28846568e0 Mon Sep 17 00:00:00 2001 From: zch Date: Fri, 20 Jun 2025 22:20:14 +0800 Subject: [PATCH] =?UTF-8?q?build(hwmom-dms):=E6=8E=92=E9=99=A4=20DMS=20?= =?UTF-8?q?=E6=A8=A1=E5=9D=97=E4=B8=AD=E4=B8=8D=E9=9C=80=E8=A6=81=E7=9A=84?= =?UTF-8?q?=E6=B6=88=E6=81=AF=E6=80=BB=E7=BA=BF=E4=BE=9D=E8=B5=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit — DMS模块通过 @DubboReference 调用 RemoteWorkflowService,而工作流模块使用Kafka,DMS模块通过依赖传递和Spring Boot自动配置机制意外初始化了Kafka AdminClient,但配置指向了错误的地址(localhost9092)。 - 在 hwmom-dms 模块的 pom.xml 文件中,为 hwmom-api-workflow 依赖添加了 exclusions 配置 - 排除了 org.dromara组的 ruoyi-common-bus 依赖,以避免引入不必要的消息总线组件 --- ruoyi-modules/hwmom-dms/pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ruoyi-modules/hwmom-dms/pom.xml b/ruoyi-modules/hwmom-dms/pom.xml index a13b18b..7a9fa88 100644 --- a/ruoyi-modules/hwmom-dms/pom.xml +++ b/ruoyi-modules/hwmom-dms/pom.xml @@ -185,6 +185,13 @@ hwmom-api-workflow 2.2.2 compile + + + + org.dromara + ruoyi-common-bus + +