2026-06-23 18:46:45 +08:00
|
|
|
spring:
|
2026-06-25 12:10:46 +08:00
|
|
|
data:
|
|
|
|
|
redis:
|
|
|
|
|
database: 0
|
2026-06-29 13:55:42 +08:00
|
|
|
host: 192.168.2.186
|
2026-06-25 12:10:46 +08:00
|
|
|
port: 6379
|
|
|
|
|
password: # 密码(默认为空)
|
|
|
|
|
timeout: 6000ms # 连接超时时长(毫秒)
|
|
|
|
|
lettuce:
|
|
|
|
|
pool:
|
|
|
|
|
max-active: 1000 # 连接池最大连接数(使用负值表示没有限制)
|
|
|
|
|
max-wait: -1ms # 连接池最大阻塞等待时间(使用负值表示没有限制)
|
|
|
|
|
max-idle: 10 # 连接池中的最大空闲连接
|
|
|
|
|
min-idle: 5 # 连接池中的最小空闲连接
|
2026-06-23 18:46:45 +08:00
|
|
|
datasource:
|
|
|
|
|
druid:
|
|
|
|
|
#MySQL
|
|
|
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
2026-06-29 13:55:42 +08:00
|
|
|
url: jdbc:mysql://192.168.2.186:3306/weather_data_system?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai&nullCatalogMeansCurrent=true&rewriteBatchedStatements=true
|
2026-06-23 18:46:45 +08:00
|
|
|
username: root
|
|
|
|
|
password: root
|
|
|
|
|
initial-size: 10
|
|
|
|
|
max-active: 100
|
|
|
|
|
min-idle: 10
|
|
|
|
|
max-wait: 6000
|
|
|
|
|
pool-prepared-statements: true
|
|
|
|
|
max-pool-prepared-statement-per-connection-size: 20
|
|
|
|
|
time-between-eviction-runs-millis: 60000
|
|
|
|
|
min-evictable-idle-time-millis: 300000
|
|
|
|
|
#Oracle需要打开注释
|
|
|
|
|
# validation-query: SELECT 1 FROM DUAL
|
|
|
|
|
test-while-idle: true
|
|
|
|
|
test-on-borrow: false
|
|
|
|
|
test-on-return: false
|
|
|
|
|
stat-view-servlet:
|
2026-06-30 18:21:30 +08:00
|
|
|
allow: localhost
|
2026-06-23 18:46:45 +08:00
|
|
|
enabled: true
|
|
|
|
|
url-pattern: /druid/*
|
2026-06-30 18:21:30 +08:00
|
|
|
# login-username: admin
|
|
|
|
|
# login-password: admin
|
2026-06-23 18:46:45 +08:00
|
|
|
|
2026-06-25 12:10:46 +08:00
|
|
|
# 是否开启redis缓存 true开启 false关闭
|
|
|
|
|
project-options:
|
|
|
|
|
redis:
|
|
|
|
|
open: true
|