mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 17:18:24 +08:00
24 lines
508 B
YAML
24 lines
508 B
YAML
# DataSource Config
|
|
spring:
|
|
h2:
|
|
console:
|
|
enabled: true
|
|
datasource:
|
|
url: jdbc:h2:mem:testdb
|
|
driver-class-name: org.h2.Driver
|
|
username: sa
|
|
password:
|
|
sql:
|
|
init:
|
|
schema-locations: classpath:schema.sql
|
|
data-locations: classpath:data.sql
|
|
#mybatis-flex:
|
|
# datasource:
|
|
# ds1:
|
|
# url: jdbc:mysql://127.0.0.1:3306/db
|
|
# username: root
|
|
# password: 123456
|
|
# ds2:
|
|
# url: jdbc:mysql://127.0.0.1:3306/db2
|
|
# username: root
|
|
# password: 123456 |