- 添加心跳超时消息模板和消费者处理机制 - 实现设备心跳接收和状态更新服务 - 新增心跳检测控制层和业务处理服务 - 集成熔断降级工厂处理心跳异常情况 - 移除原有的定时心跳检查任务 - 更新MQTT消息处理器集成新的心跳机制 - 配置日志级别过滤特定模板异常信息 - 添加消息队列依赖支持心跳超时处理
55 lines
1.8 KiB
XML
55 lines
1.8 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>
|
|
<artifactId>iot-access</artifactId>
|
|
<groupId>com.njcn</groupId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>access-api</artifactId>
|
|
|
|
<name>access-api</name>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.njcn</groupId>
|
|
<artifactId>common-mq</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.tocrhz</groupId>
|
|
<artifactId>mqtt-spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.njcn</groupId>
|
|
<artifactId>common-core</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.njcn</groupId>
|
|
<artifactId>common-db</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.njcn</groupId>
|
|
<artifactId>common-microservice</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.njcn</groupId>
|
|
<artifactId>common-poi</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|