You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1007 B
YAML
26 lines
1007 B
YAML
spring:
|
|
datasource:
|
|
dynamic:
|
|
# 设置默认的数据源或者数据源组,默认值即为 master
|
|
primary: master
|
|
datasource:
|
|
# 主库数据源
|
|
master:
|
|
type: ${spring.datasource.type}
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
url: ${datasource.system-master.url}
|
|
username: ${datasource.system-master.username}
|
|
password: ${datasource.system-master.password}
|
|
# oracle:
|
|
# type: ${spring.datasource.type}
|
|
# driverClassName: oracle.jdbc.OracleDriver
|
|
# url: ${datasource.system-oracle.url}
|
|
# username: ${datasource.system-oracle.username}
|
|
# password: ${datasource.system-oracle.password}
|
|
# postgres:
|
|
# type: ${spring.datasource.type}
|
|
# driverClassName: org.postgresql.Driver
|
|
# url: ${datasource.system-postgres.url}
|
|
# username: ${datasource.system-postgres.username}
|
|
# password: ${datasource.system-postgres.password}
|