1. 修复消息格式不匹配问题 - 增量消息:兼容 SyncMessage 格式,从 dataSnapshot 字段反序列化数据 - 批量消息:添加 getDataType() 方法获取泛型类型,正确转换 JSONObject 2. 防止消息循环 - 添加 zt.databus.change.producer.enabled 配置项 - 客户端禁用变更消息发送,避免 客户端写入 → 发送变更 → 循环 3. 修复 Feign 客户端注入 - 在 RpcConfiguration 中添加 DeptApi、PostApi - 确保客户端能通过 Feign 调用本地 system-server API 相关文件: - DatabusClientConsumer.java: 修复消息解析逻辑 - BatchSyncEventHandler.java: 添加 getDataType() 方法 - DatabusChangeProducer.java: 添加 enabled 开关 - RpcConfiguration.java: 启用 DeptApi/PostApi Feign 客户端 Ref: 修复 ClassCastException 和消息循环问题
81 lines
2.5 KiB
XML
81 lines
2.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<parent>
|
|
<groupId>com.zt.plat</groupId>
|
|
<artifactId>zt-framework</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>zt-spring-boot-starter-databus-server</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>${project.artifactId}</name>
|
|
<description>DataBus 服务端组件,负责发送数据变更消息到各客户端</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.zt.plat</groupId>
|
|
<artifactId>zt-common</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Databus API -->
|
|
<dependency>
|
|
<groupId>com.zt.plat</groupId>
|
|
<artifactId>zt-module-databus-api</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
|
|
<!-- System API (for consuming change messages) -->
|
|
<dependency>
|
|
<groupId>com.zt.plat</groupId>
|
|
<artifactId>zt-module-system-api</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
</dependency>
|
|
|
|
<!-- MQ -->
|
|
<dependency>
|
|
<groupId>com.zt.plat</groupId>
|
|
<artifactId>zt-spring-boot-starter-mq</artifactId>
|
|
</dependency>
|
|
|
|
<!-- MyBatis -->
|
|
<dependency>
|
|
<groupId>com.zt.plat</groupId>
|
|
<artifactId>zt-spring-boot-starter-mybatis</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Web -->
|
|
<dependency>
|
|
<groupId>com.zt.plat</groupId>
|
|
<artifactId>zt-spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Security -->
|
|
<dependency>
|
|
<groupId>com.zt.plat</groupId>
|
|
<artifactId>zt-spring-boot-starter-security</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Tenant -->
|
|
<dependency>
|
|
<groupId>com.zt.plat</groupId>
|
|
<artifactId>zt-spring-boot-starter-biz-tenant</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Test -->
|
|
<dependency>
|
|
<groupId>com.zt.plat</groupId>
|
|
<artifactId>zt-spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|