Files
nl-Frebot/nl-web-app/src/main/resources/config/application-prod.yml

103 lines
3.0 KiB
YAML
Raw Normal View History

2025-12-15 10:42:02 +08:00
server:
# 端口
port: 8011
tomcat:
max-swallow-size: 100MB
spring:
datasource:
dynamic:
datasource:
master:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://127.0.0.1:3306/nl_frobot?serverTimezone=GMT%2B8&characterEncoding=utf-8&userSSL=false
username: root
password: nlrobot
2025-12-15 10:42:02 +08:00
druid:
db-type: com.alibaba.druid.pool.DruidDataSource
# 初始连接数
initial-size: 5
# 最小连接数
min-idle: 15
# 最大连接数
max-active: 30
# 超时时间(以秒数为单位)
remove-abandoned-timeout: 180
# 获取连接超时时间
max-wait: 3000
# 连接有效性检测时间
time-between-eviction-runs-millis: 60000
# 连接在池中最小生存的时间
min-evictable-idle-time-millis: 300000
# 连接在池中最大生存的时间
max-evictable-idle-time-millis: 900000
# 指明连接是否被空闲连接回收器(如果有)进行检验.如果检测失败,则连接将被从池中去除
test-while-idle: true
# 指明是否在从池中取出连接前进行检验,如果检验失败, 则从池中去除连接并尝试取出另一个
test-on-borrow: true
# 是否在归还到池中前进行检验
test-on-return: false
# 检测连接是否有效
validation-query: select 1
# 配置监控统计
webStatFilter:
enabled: true
stat-view-servlet:
enabled: true
url-pattern: /druid/*
reset-enable: false
filter:
stat:
enabled: true
# 记录慢SQL
log-slow-sql: true
slow-sql-millis: 1000
merge-sql: true
wall:
config:
multi-statement-allow: true
2026-01-30 17:16:46 +08:00
data:
redis:
#数据库索引
database: 2
host: 192.168.29.130
port: 6379
password: 123456
# IP 本地解析
ip:
local-parsing: true
2025-12-15 10:42:02 +08:00
# 文件存储路径
file:
mac:
path: ~/file/
qrcode: ~/qrcode/
2026-01-30 17:16:46 +08:00
avatar: ~/avatar/
2025-12-15 10:42:02 +08:00
linux:
path: /home/pi/nl_robot/map/
qrcode: /home/pi/nl_robot/qrcode/
2026-01-30 17:16:46 +08:00
avatar: /home/pi/nl_robot/avatar/
2025-12-15 10:42:02 +08:00
windows:
path: C:\eladmin\file\currentMap\
qrcode: C:\eladmin\qrcode\currentMap\
2026-01-30 17:16:46 +08:00
avatar: C:\eladmin\avatar\
2025-12-15 10:42:02 +08:00
# 文件大小 /M
maxSize: 100
avatarMaxSize: 5
############## Sa-Token 配置 (文档: https://sa-token.cc) ##############
sa-token:
# token名称 (同时也是cookie名称)
token-name: Authorization
# token有效期单位s 默认30天, -1代表永不过期
timeout: 2592000
# token临时有效期 (指定时间内无操作就视为token过期) 单位: 秒
2026-01-30 17:16:46 +08:00
active-timeout: -1
2025-12-15 10:42:02 +08:00
# 是否允许同一账号并发登录 (为true时允许一起登录, 为false时新登录挤掉旧登录)
is-concurrent: true
# 在多人登录同一账号时是否共用一个token (为true时所有登录共用一个token, 为false时每次登录新建一个token)
is-share: false
# token风格
token-style: random-128
# 是否输出操作日志
is-log: true