2025-10-31 07:17:01 +00:00
|
|
|
|
spring:
|
|
|
|
|
|
datasource:
|
|
|
|
|
|
dynamic:
|
|
|
|
|
|
primary: postgresMaster_1 #设置默认的数据源或者数据源组,默认值即为master
|
|
|
|
|
|
strict: true #严格匹配数据源,默认false. true未匹配到指定数据源时抛异常,false使用默认数据源
|
|
|
|
|
|
grace-destroy: false #是否优雅关闭数据源,默认为false,设置为true时,关闭数据源时如果数据源中还存在活跃连接,至多等待10s后强制关闭
|
|
|
|
|
|
datasource:
|
|
|
|
|
|
postgresMaster_1:
|
|
|
|
|
|
driver-class-name: org.postgresql.Driver
|
|
|
|
|
|
url: jdbc:postgresql://${POSTGRES_HOST:localhost}:${POSTGRES_PORT:5432}/cloud
|
|
|
|
|
|
username: ${POSTGRES_USER:postgres}
|
|
|
|
|
|
password: ${POSTGRES_PASSWORD:postgrespwd}
|
|
|
|
|
|
seata: false
|
|
|
|
|
|
p6spy: false
|
|
|
|
|
|
hikari:
|
2025-11-18 05:54:16 +00:00
|
|
|
|
maximum-pool-size: 20
|
|
|
|
|
|
minimum-idle: 2
|
2025-11-18 07:25:32 +00:00
|
|
|
|
connection-timeout: 3000
|