spring:
mybatis:
primary:
driverClassName: org.postgresql.Driver
jdbcUrl: jdbc:postgresql://localhost/primarydb
jdbcUsername: dbuser
jdbcPassword: dbpassword
maxidle: 5
minidle: 3
initialSize: 5
defaultAutoCommit: false
configfile: classpath:config/mybatis-config.xml
mapperlocation: classpath:mappers/primary/*.xml
typealiases: jp.dip.arimodoki.model.dto
secondary:
driverClassName: org.mariadb.jdbc.Driver
jdbcUrl: jdbc:mysql://localhost/secondarydb
jdbcUsername: dbuser
jdbcPassword: dbpassword
maxidle: 5
minidle: 3
initialSize: 5
defaultAutoCommit: false
configfile: classpath:config/mybatis-config.xml
mapperlocation: classpath:mappers/secondary/*.xml
typealiases: jp.dip.arimodoki.model.dto
|