Springboot druid 的动态多数据源配置

下面就对spring boot 2.x + druid + Mybatis-plus 来实现多数据源 的整合,
可以参考下面的文章,就不搬砖照抄了。

注: 需要排除掉 DruidDataSourceAutoConfigure 类,不然启动会报错找不到配置的 url。

方法1: 在启动类上排除

@SpringBootApplication(exclude = DruidDataSourceAutoConfigure.class)
@Slf4j
public class App {

  public static void main(String[] args) {
      SpringApplication.run(App.class, args);
      log.info("------springboot running-----");
  }
}

方法2:在配置文件中配置排除

spring:
  autoconfigure:
    exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure
  datasource:
    dynamic:
      druid:
        # 连接池的配置信息
        # 初始化大小,最小,最大
        initial-size: 5
        min-idle: 5
        maxActive: 20
        # 配置获取连接等待超时的时间
        maxWait: 60000
        # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
        timeBetweenEvictionRunsMillis: 60000
        # 配置一个连接在池中最小生存的时间,单位是毫秒
        minEvictableIdleTimeMillis: 300000
         #连接池中的minIdle数量以内的连接,空闲时间超过minEvictableIdleTimeMillis,则会执行keepAlive操作
        keepAlive: true
        #允许物理连接最大存活时间,单位是毫秒
        phyTimeoutMillis: 2520000
        validationQuery: select 'x'
        testWhileIdle: true
        testOnBorrow: true
        testOnReturn: false
        # 打开PSCache,并且指定每个连接上PSCache的大小
        poolPreparedStatements: true
        maxPoolPreparedStatementPerConnectionSize: 20
        # 配置监控统计拦截的filters,去掉后监控界面sql无法统计,'wall'用于防火墙
        filters: stat,wall,slf4j
        # 通过connectProperties属性来打开mergeSql功能;慢SQL记录
        connectionProperties: druid.stat.mergeSql\=true;druid.stat.slowSqlMillis\=5000
      primary: master
      datasource:
        master:
          driverClassName: com.mysql.cj.jdbc.Driver
          url: jdbc:mysql://10.60.12.34:3207/testdb?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useAffectedRows=true
          username: user1
          password: passwd1
  1. 官方文档见这里
  2. 经典例子见这里

你可能感兴趣的:(spring,boot,java,后端,mybatis-plus)