# 复制为 application.yml 并替换占位符后使用(真实密钥不入库)
|
server:
|
port: 8090
|
|
spring:
|
datasource:
|
url: jdbc:mysql://localhost:3305/traffic_audit?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai&useSSL=false&allowPublicKeyRetrieval=true&rewriteBatchedStatements=true
|
username: root
|
password: ${MYSQL_PASSWORD:root}
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
servlet:
|
multipart:
|
max-file-size: 100MB
|
max-request-size: 100MB
|
jackson:
|
date-format: yyyy-MM-dd HH:mm:ss
|
time-zone: Asia/Shanghai
|
|
mybatis-plus:
|
mapper-locations: classpath*:/mapper/**/*.xml
|
type-aliases-package: com.trafficaudit
|
configuration:
|
map-underscore-to-camel-case: true
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
global-config:
|
db-config:
|
id-type: auto
|
logic-delete-field: deleted
|
logic-delete-value: 1
|
logic-not-delete-value: 0
|
|
jwt:
|
secret: ${JWT_SECRET:change-me-jwt-secret}
|
expiration: 86400000
|
|
docs:
|
template-root: docs
|
|
city-passenger:
|
template-dir: docs/城市客运
|
|
passenger:
|
template-dir: docs/公路旅客
|
|
freight:
|
template-dir: docs/货运
|
|
energy:
|
template-dir: docs/能耗
|
|
investment:
|
template-dir: docs/投资/模板
|
|
deepseek:
|
api-key: ${DEEPSEEK_API_KEY:your-deepseek-api-key}
|
api-url: https://api.deepseek.com/v1/chat/completions
|
model: deepseek-chat
|
|
# Behavior captcha on login. Set to false to skip verification during test phase; enable before production release.
|
app:
|
captcha:
|
required: false
|