文件名称:springboot双数据源
文件大小:15.26MB
文件格式:RAR
更新时间:2021-05-31 08:18:18
springboot 双数据源 oracle mysql
springboot 双数据源 oracle mysql #数据源1 spring.datasource.db1.url=jdbc:mysql://192.168.1.1:3306/db1?useUnicode=true&characterEncoding=utf-8&useSSL=false spring.datasource.db1.username=root spring.datasource.db1.password=123 spring.datasource.db1.driver-class-name=com.mysql.jdbc.Driver spring.datasource.db1.max-idle=10 spring.datasource.db1.max-wait=10000 spring.datasource.db1.min-idle=5 spring.datasource.db1.initial-size=5 #数据源2 spring.datasource.db2.url=jdbc:oracle:thin:@192.168.1.1:1521:ORCL spring.datasource.db2.username=root spring.datasource.db2.password=123 spring.datasource.db2.driver-class-name=oracle.jdbc.driver.OracleDriver spring.datasource.db2.max-idle=10 spring.datasource.db2.max-wait=10000 spring.datasource.db2.min-idle=5 spring.datasource.db2.initial-size=5