mirror of
https://github.com/201206030/novel-plus.git
synced 2025-07-01 15:26:37 +00:00
42 lines
1001 B
Java
42 lines
1001 B
Java
spring:
|
||
profiles:
|
||
include: [common]
|
||
datasource:
|
||
url: jdbc:mysql://127.0.0.1:3306/novel_plus?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=Asia/Shanghai
|
||
username: root
|
||
password: test123456
|
||
driver-class-name: com.mysql.cj.jdbc.Driver
|
||
#Redis服务器IP
|
||
redis:
|
||
host: 127.0.0.1
|
||
#Redis服务器连接端口
|
||
port: 6379
|
||
#Redis服务器连接密码
|
||
password: test
|
||
jedis:
|
||
pool:
|
||
#连接池最大连接数(使用负值表示没有限制)
|
||
max-active: 8
|
||
#连接池最大阻塞等待时间(使用负值表示没有限制)
|
||
max-wait: 1
|
||
#连接池最大阻塞等待时间(使用负值表示没有限制)
|
||
max-idle: 8
|
||
#连接池中的最小空闲连接
|
||
min-idle: 0
|
||
#连接超时时间(毫秒)
|
||
timeout: 30000
|
||
|
||
|
||
|
||
|
||
|
||
|
||
pic:
|
||
save:
|
||
type: 2 #图片保存方式, 1不保存,使用网络图片 ,2本地保存
|
||
path: /var/pic #图片保存路径
|
||
|
||
|
||
|
||
|