|
@ -20,9 +20,13 @@ spring:
|
|
|
test-while-idle: true #指明连接是否被空闲连接回收器(如果有)进行检验,如果检测失败,则连接将被从池中去除
|
|
|
min-evictable-idle-time-millis: 3600000 #连接池中连接,在时间段内一直空闲,被逐出连接池的时间(1000*60*60),以毫秒为单位
|
|
|
time-between-eviction-runs-millis: 300000 #在空闲连接回收器线程运行期间休眠的时间值,以毫秒为单位,一般比minEvictableIdleTimeMillis小
|
|
|
# sleuth:
|
|
|
# sampler:
|
|
|
# percentage: 1.0 #采用需要的请求的百分比 默认是0.1 即 10%
|
|
|
|
|
|
http:
|
|
|
multipart:
|
|
|
max-file-size: 5MB
|
|
|
location: D:/work/soft_dev/IdeaWorkSpace/wlyy2.0/svr/svr-patient/temp_file/
|
|
|
resolve-lazily: true
|
|
|
|
|
|
redis:
|
|
|
database: 0 # Database index used by the connection factory.
|
|
|
password: # Login password of the redis server.
|
|
@ -102,6 +106,13 @@ fastDFS:
|
|
|
# 短信发送地址
|
|
|
jw:
|
|
|
smsUrl: http://svr-base:10020/sms_gateway/send
|
|
|
myFamily:
|
|
|
qrCodeFailurTime: 2
|
|
|
wechat:
|
|
|
id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段
|
|
|
# 短信验证码发送的客户端标识,居民端
|
|
|
sms:
|
|
|
clientId: EwC0iRSrcP
|
|
|
---
|
|
|
spring:
|
|
|
profiles: jwtest
|
|
@ -129,7 +140,13 @@ spring:
|
|
|
port: 6379 # Redis server port.
|
|
|
fastDFS:
|
|
|
fastdfs_file_url: http://172.19.103.54:80/
|
|
|
|
|
|
wechat:
|
|
|
id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段
|
|
|
# 短信验证码发送的客户端标识,居民端
|
|
|
sms:
|
|
|
clientId: EwC0iRSrcP
|
|
|
myFamily:
|
|
|
qrCodeFailurTime: 2
|
|
|
---
|
|
|
spring:
|
|
|
profiles: prod
|
|
@ -153,4 +170,11 @@ spring:
|
|
|
host: 172.19.103.88 # Redis server host.
|
|
|
port: 6379 # Redis server port.
|
|
|
fastDFS:
|
|
|
fastdfs_file_url: http://172.19.103.54:80/
|
|
|
fastdfs_file_url: http://172.19.103.54:80/
|
|
|
wechat:
|
|
|
id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
|
|
|
# 短信验证码发送的客户端标识,居民端
|
|
|
sms:
|
|
|
clientId: EwC0iRSrcP #todo 待配置
|
|
|
myFamily:
|
|
|
qrCodeFailurTime: 2
|