You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
604 B
16 lines
604 B
spring:
|
|
datasource:
|
|
master:
|
|
host: 192.168.0.84:3306
|
|
jdbc-url: jdbc:mysql://${spring.datasource.master.host}/${spring.datasource.master.schema-name}?useUnicode=true&characterEncoding=utf8&useSSL=false
|
|
password: rpayplus
|
|
schema-name: royalpay
|
|
username: root
|
|
slave:
|
|
host: 192.168.0.84:3306
|
|
jdbc-url: jdbc:mysql://${spring.datasource.slave.host}/${spring.datasource.slave.schema-name}?useUnicode=true&characterEncoding=utf8&useSSL=false
|
|
password: rpayplus
|
|
schema-name: royalpay
|
|
username: root
|
|
type: com.zaxxer.hikari.HikariDataSource
|