2026-04-22 11:15:36 +08:00
|
|
|
|
# ============================================================
|
|
|
|
|
|
# aida-seller - 本地配置(不区分环境)
|
|
|
|
|
|
# 公共配置(DB、Redis、RabbitMQ、MinIO、API Keys 等)由 Nacos 统一管理
|
|
|
|
|
|
# 鉴权逻辑已全部迁移至 Gateway(GlobalAuthWebFilter)
|
|
|
|
|
|
# ============================================================
|
|
|
|
|
|
|
2026-04-21 10:25:39 +08:00
|
|
|
|
server:
|
2026-05-04 14:19:38 +08:00
|
|
|
|
port: 10093
|
2026-04-21 10:25:39 +08:00
|
|
|
|
|
|
|
|
|
|
spring:
|
|
|
|
|
|
application:
|
|
|
|
|
|
name: aida-seller
|
|
|
|
|
|
|
2026-04-22 11:15:36 +08:00
|
|
|
|
# ---------- MyBatis-Plus(seller 私有:id 自增,logic-delete 字段不同) ----------
|
2026-04-21 10:25:39 +08:00
|
|
|
|
mybatis-plus:
|
|
|
|
|
|
mapper-locations: classpath*:/mapper/**/*.xml
|
|
|
|
|
|
type-aliases-package: com.aida.seller.module.*.entity
|
|
|
|
|
|
global-config:
|
|
|
|
|
|
db-config:
|
2026-05-11 16:40:47 +08:00
|
|
|
|
id-type: assign_id
|
2026-04-21 10:25:39 +08:00
|
|
|
|
logic-delete-field: deleted
|
|
|
|
|
|
logic-delete-value: 1
|
|
|
|
|
|
logic-not-delete-value: 0
|
|
|
|
|
|
configuration:
|
|
|
|
|
|
map-underscore-to-camel-case: true
|
|
|
|
|
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
|
|
|
|
|
|
2026-04-22 11:15:36 +08:00
|
|
|
|
# ---------- MinIO(seller 私有:单个 bucket) ----------
|
2026-04-21 10:25:39 +08:00
|
|
|
|
minio:
|
|
|
|
|
|
default-bucket: aida-user
|
|
|
|
|
|
|
|
|
|
|
|
logging:
|