feat(minio): 启用并配置 MinIO 对象存储功能

- 将 MinIO 启用状态设置为 true
- 更新访问密钥和秘密密钥配置
- 添加 okhttp 依赖以确保 MinIO 正常运行
This commit is contained in:
2026-06-09 13:14:23 +08:00
parent 1065c62d0c
commit 609a6e91ef
2 changed files with 9 additions and 3 deletions

View File

@@ -119,6 +119,12 @@
<artifactId>minio</artifactId>
<version>8.5.7</version>
</dependency>
<!-- 覆盖项目中 OkHttp 3.x 为 MinIO 所需的 4.x 版本 -->
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.12.0</version>
</dependency>
<!-- servlet包 -->
<dependency>