feat:【IOT】新增 HTTP 协议支持及相关解析器,完善协议转换器功能

This commit is contained in:
haohao
2025-05-23 23:23:49 +08:00
parent ab4b148df3
commit fbb664026d
21 changed files with 2489 additions and 11 deletions

View File

@@ -53,6 +53,18 @@
<artifactId>vertx-web</artifactId>
<scope>provided</scope>
</dependency>
<!-- 测试相关 -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>