增加pay配置文件
This commit is contained in:
parent
4c4c469db2
commit
7f169ee677
|
|
@ -0,0 +1,65 @@
|
||||||
|
# 数据源的一些配置
|
||||||
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
||||||
|
# 最小空闲连接,默认值10,小于0或大于maximum-pool-size,都会重置为maximum-pool-size
|
||||||
|
minimum-idle: 5
|
||||||
|
# 最大连接数,小于等于0会被重置为默认值10;大于零小于1会被重置为minimum-idle的值
|
||||||
|
maximum-pool-size: 15
|
||||||
|
# 空闲连接超时时间,默认值600000(10分钟),大于等于max-lifetime且max-lifetime>0,会被重置为0;不等于0且小于10秒,会被重置为10秒。
|
||||||
|
idle-timeout: 30000
|
||||||
|
# 连接最大存活时间.不等于0且小于30秒,会被重置为默认值30分钟.设置应该比mysql设置的超时时间短
|
||||||
|
max-lifetime: 30000
|
||||||
|
# 连接超时时间:毫秒,小于250毫秒,否则被重置为默认值30秒
|
||||||
|
connection-timeout: 30000
|
||||||
|
|
||||||
|
spring:
|
||||||
|
# sharding-jdbc 配置
|
||||||
|
shardingsphere:
|
||||||
|
center-tables-data-node: duanju.%s
|
||||||
|
# 显示sharding-jdbc改写的sql语句
|
||||||
|
show-sql: false
|
||||||
|
# 数据源名称
|
||||||
|
datasource:
|
||||||
|
# 数据源配置begin
|
||||||
|
master-0:
|
||||||
|
driver-class-name: ${driver-class-name}
|
||||||
|
jdbc-url: jdbc:mysql://rm-gc7xx913734hv5w5qxo.mysql.cn-chengdu.rds.aliyuncs.com/duanju?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=CTT
|
||||||
|
username: video_user
|
||||||
|
password: VideoUser@1
|
||||||
|
# jdbc-url: jdbc:mysql://rm-gc712o11yndj78x6a6o.mysql.cn-chengdu.rds.aliyuncs.com/duanju?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=CTT
|
||||||
|
# username: video_user
|
||||||
|
# password: VideoUser@1
|
||||||
|
minimum-idle: ${minimum-idle}
|
||||||
|
maximum-pool-size: ${maximum-pool-size}
|
||||||
|
idle-timeout: ${idle-timeout}
|
||||||
|
max-lifetime: ${max-lifetime}
|
||||||
|
connection-timeout: ${connection-timeout}
|
||||||
|
slave-0:
|
||||||
|
driver-class-name: ${driver-class-name}
|
||||||
|
jdbc-url: jdbc:mysql://rm-gc7xx913734hv5w5qxo.mysql.cn-chengdu.rds.aliyuncs.com/duanju?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=CTT
|
||||||
|
username: video_user
|
||||||
|
password: VideoUser@1
|
||||||
|
# jdbc-url: jdbc:mysql://47.122.26.160:3306/duanju?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=CTT
|
||||||
|
# username: root
|
||||||
|
# password: 0fd6497c308ccfa8
|
||||||
|
minimum-idle: ${minimum-idle}
|
||||||
|
maximum-pool-size: ${maximum-pool-size}
|
||||||
|
idle-timeout: ${idle-timeout}
|
||||||
|
max-lifetime: ${max-lifetime}
|
||||||
|
connection-timeout: ${connection-timeout}
|
||||||
|
# 数据源配置end
|
||||||
|
|
||||||
|
# 读写分离配置begin
|
||||||
|
master-slave-rules:
|
||||||
|
#数据源
|
||||||
|
duanju:
|
||||||
|
master-data-source-name: master-0
|
||||||
|
slave-data-source-names: slave-0
|
||||||
|
# - master-0
|
||||||
|
# - slave-0
|
||||||
|
|
||||||
|
swagger:
|
||||||
|
enabled: true
|
||||||
|
pay:
|
||||||
|
h5BaseUrl: https://video-h5.hnsiyao.cn/me/detail/detail?allId=
|
||||||
|
orderNotifyUrl: https://video.hnsiyao.cn/czg/app/wuyou/notify
|
||||||
|
extractNotifyUrl: https://video.hnsiyao.cn/czg/app/wuyou/extractNotify
|
||||||
Loading…
Reference in New Issue