chore(config): 简化Redis配置结构
- 移除了多余的data层级嵌套 - 统一了Redis连接配置格式- 保留了必要的连接参数(host、port、password、database) - 清理了注释掉的重复配置项
parent
0f5da02353
commit
f81faf86ef
|
|
@ -43,17 +43,11 @@ spring:
|
|||
dialect: org.hibernate.dialect.DmDialect
|
||||
|
||||
# Redis
|
||||
data:
|
||||
redis:
|
||||
host: 10.0.41.112
|
||||
port: 6379
|
||||
password: 1234567a
|
||||
database: 4
|
||||
# host: 10.0.41.112
|
||||
# password: 1234567a
|
||||
# host: 127.0.0.1
|
||||
# password:
|
||||
redis:
|
||||
host: 10.0.41.112
|
||||
port: 6379
|
||||
password: 1234567a
|
||||
database: 4
|
||||
servlet:
|
||||
multipart:
|
||||
max-file-size: 1100MB
|
||||
|
|
|
|||
Loading…
Reference in New Issue