spring boot 集成 dynamic-datasource-spring-boot-starter

spring boot 集成 dynamic-datasource-spring-boot-starter

在使用多数据源时,为了不再造轮子,就使用 mybatis-plus 中的 dynamic-datasource-spring-boot-starter

一般集成直接看官网就行 dynamic-datasource-spring-boot-starter

场景

在非多数据源的项目基础上加集成多数据源

现在要讲的是通过 java 代码方式 实现

引入依赖

xml 复制代码
<dependency>
    <groupId>com.baomidou</groupId>
    <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
    <version>4.3.0</version>
</dependency>

// 用户 postgresql
<dependency>
    <groupId>org.postgresql</groupId>
    <artifactId>postgresql</artifactId>
    <scope>runtime</scope>
</dependency>

配置Properties

application.properties:

properties 复制代码
spring.datasource.password=admin
spring.datasource.platform=mysql
spring.datasource.type=com.alibaba.druid.pool.DruidDataSource
spring.datasource.url=jdbc:mysql://192.168.x.x:3306/system?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai
spring.datasource.username=admin
# 驱动类型需要!!
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

# slave1 postgresql
spring.datasource.slave1.type=com.alibaba.druid.pool.DruidDataSource
spring.datasource.slave1.password=admin
spring.datasource.slave1.url=jdbc:postgresql://192.168.x.x:5432/user
spring.datasource.slave1.username=admin
spring.datasource.slave1.driverClassName=org.postgresql.Driver
# 指定多数据源默认数据库
spring.datasource.dynamic.primary=master


# slave2 mysql
spring.datasources.slave2.driverClassName=com.mysql.cj.jdbc.Driver
spring.datasources.slave2.jdbcUrl=jdbc:mysql://192.168.x.x:3306/test?allowPublicKeyRetrieval=true&useSSL=false&useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true&autoReconnect=true&serverTimezone=Asia/Shanghai
spring.datasources.slave2.username=admin
spring.datasources.slave2.password=admin

DataSourceConfig:

java 复制代码
@Configuration
public class DataSourceConfig {

    //原始的数据源
    @Bean(name = "master")
    @ConfigurationProperties(prefix = "spring.datasource")
    public DataSourceProperty masterDataSourceProperty() {
        return new DataSourceProperty();
    }

    
    @Bean(name = "slave1")
    @ConfigurationProperties(prefix = "spring.datasource.slave1")
    public DataSourceProperty slave1DataSourceProperty() {
        return new DataSourceProperty();
    }

    @Bean(name = "slave2")
    @ConfigurationProperties(prefix = "spring.datasource.slave2")
    public DataSourceProperty slave2DataSourceProperty() {
        return new DataSourceProperty();
    }


    @Bean
    @Order(1)
    public DynamicDataSourceProvider beanDataSourceProvider(DefaultDataSourceCreator defaultDataSourceCreator) {
        Map<String, DataSourceProperty> dataSourceMap = new HashMap<>();
        dataSourceMap.put("slave1", slave1DataSourceProperty());
        dataSourceMap.put("master", masterDataSourceProperty());
        dataSourceMap.put("slave2", slave2DataSourceProperty());
        return new YmlDynamicDataSourceProvider(defaultDataSourceCreator, dataSourceMap);
    }
}

使用

java 复制代码
@DS("slave1")
@Override
public List<User> queryPage(int offset, int pageSize) {
    //分页
    return baseMapper.queryList(offset,pageSize);
}

good luck!

相关推荐
荒古前1 小时前
Spring Boot + MyBatis 启动报错:不允许有匹配 “[xX][mM][lL]“ 的处理指令目标
spring boot·后端·mybatis
mldlds1 小时前
Spring Boot 实战:轻松实现文件上传与下载功能
java·数据库·spring boot
xxjj998a1 小时前
Spring Boot 整合 Apollo 配置中心实战
java·spring boot·后端
splage2 小时前
SpringBoot 与 SpringCloud的版本对应详细版
spring boot·后端·spring cloud
wellc2 小时前
Spring Boot 热部署
java·spring boot·后端
吾诺3 小时前
Spring Boot 整合 Redis 步骤详解
spring boot·redis·bootstrap
indexsunny3 小时前
互联网大厂Java面试:从Spring Boot到微服务的逐步挑战
java·数据库·spring boot·redis·微服务·面试·电商
yuweiade3 小时前
Spring Boot 集成 Kettle
java·spring boot·后端
不吃香菜学java4 小时前
苍穹外卖-删除菜品
java·spring boot·spring·tomcat·log4j·maven
bing_1585 小时前
spring Boot 3.0 和2.0的区别
java·spring boot·后端