feat(aiot): 集成腾讯云 COS Java SDK,WVP 直接生成 presigned URL

- pom.xml 新增 cos_api 5.6.227 依赖
- 新建 CosUtil 工具类(读取 ai.cos.* 配置,初始化 COSClient,生成预签名 URL)
- application-dev.yml / application-docker.yml 增加 ai.cos 配置段

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-03 20:06:57 +08:00
parent 86518ab163
commit bdd69ce268
4 changed files with 113 additions and 0 deletions

View File

@@ -422,6 +422,13 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!-- 腾讯云 COS SDK截图/告警图片 presign -->
<dependency>
<groupId>com.qcloud</groupId>
<artifactId>cos_api</artifactId>
<version>5.6.227</version>
</dependency>
</dependencies>
<build>