33 lines
989 B
YAML
33 lines
989 B
YAML
# ============================================================
|
||
# aida-seller - 本地配置(不区分环境)
|
||
# 公共配置(DB、Redis、RabbitMQ、MinIO、API Keys 等)由 Nacos 统一管理
|
||
# 鉴权逻辑已全部迁移至 Gateway(GlobalAuthWebFilter)
|
||
# ============================================================
|
||
|
||
server:
|
||
port: 10093
|
||
|
||
spring:
|
||
application:
|
||
name: aida-seller
|
||
|
||
# ---------- MyBatis-Plus(seller 私有:id 自增,logic-delete 字段不同) ----------
|
||
mybatis-plus:
|
||
mapper-locations: classpath*:/mapper/**/*.xml
|
||
type-aliases-package: com.aida.seller.module.*.entity
|
||
global-config:
|
||
db-config:
|
||
id-type: assign_id
|
||
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
|
||
|
||
# ---------- MinIO(seller 私有:单个 bucket) ----------
|
||
minio:
|
||
default-bucket: aida-user
|
||
|
||
logging:
|