当前位置:   article > 正文

SpringBoot实现动态切换数据源:轻松应对复杂多变业务需求!_在springboot项目中主从数据切换会影响性能吗

在springboot项目中主从数据切换会影响性能吗

最近在做业务需求时,需要从不同的数据库中获取数据然后写入到当前数据库中,因此涉及到切换数据源问题。本来想着使用Mybatis-plus中提供的动态数据源SpringBoot的starter:dynamic-datasource-spring-boot-starter来实现。结果引入后发现由于之前项目环境问题导致无法使用。然后研究了下数据源切换代码,决定自己采用ThreadLocal+AbstractRoutingDataSource来模拟实现dynamic-datasource-spring-boot-starter中线程数据源切换。

1、简介

上述提到了ThreadLocal和AbstractRoutingDataSource,我们来对其进行简单介绍下。

ThreadLocal:想必大家必不会陌生,全称:thread local variable。主要是为解决多线程时由于并发而产生数据不一致问题。ThreadLocal为每个线程提供变量副本,确保每个线程在某一时间访问到的不是同一个对象,这样做到了隔离性,增加了内存,但大大减少了线程同步时的性能消耗,减少了线程并发控制的复杂程度。

ThreadLocal作用:在一个线程中共享,不同线程间隔离

ThreadLocal原理:ThreadLocal存入值时,会获取当前线程实例作为key,存入当前线程对象中的Map中。

AbstractRoutingDataSource:根据用户定义的规则选择当前的数据源,

作用:在执行查询之前,设置使用的数据源,实现动态路由的数据源,在每次数据库查询操作前执行它的抽象方法determineCurrentLookupKey(),决定使用哪个数据源。

2、代码实现

程序环境:

SpringBoot2.4.8

Mybatis-plus3.2.0

Druid1.2.6

lombok1.18.20

commons-lang3 3.10

2.1 实现ThreadLocal

创建一个类用于实现ThreadLocal,主要是通过get,set,remove方法来获取、设置、删除当前线程对应的数据源。

  1. /**
  2.  * @author: jiangjs
  3.  * @description:
  4.  * @date2023/7/27 11:21
  5.  **/
  6. public class DataSourceContextHolder {
  7.     //此类提供线程局部变量。这些变量不同于它们的正常对应关系是每个线程访问一个线程(通过getset方法),有自己的独立初始化变量的副本。
  8.     private static final ThreadLocal<String> DATASOURCE_HOLDER = new ThreadLocal<>();
  9.     /**
  10.      * 设置数据源
  11.      * @param dataSourceName 数据源名称
  12.      */
  13.     public static void setDataSource(String dataSourceName){
  14.         DATASOURCE_HOLDER.set(dataSourceName);
  15.     }
  16.     /**
  17.      * 获取当前线程的数据源
  18.      * @return 数据源名称
  19.      */
  20.     public static String getDataSource(){
  21.         return DATASOURCE_HOLDER.get();
  22.     }
  23.     /**
  24.      * 删除当前数据源
  25.      */
  26.     public static void removeDataSource(){
  27.         DATASOURCE_HOLDER.remove();
  28.     }
  29. }

2.2 实现AbstractRoutingDataSource

定义一个动态数据源类实现AbstractRoutingDataSource,通过determineCurrentLookupKey方法与上述实现的ThreadLocal类中的get方法进行关联,实现动态切换数据源。

  1. /**
  2.  * @author: jiangjs
  3.  * @description: 实现动态数据源,根据AbstractRoutingDataSource路由到不同数据源中
  4.  * @date2023/7/27 11:18
  5.  **/
  6. public class DynamicDataSource extends AbstractRoutingDataSource {
  7.     public DynamicDataSource(DataSource defaultDataSource,Map<ObjectObject> targetDataSources){
  8.         super.setDefaultTargetDataSource(defaultDataSource);
  9.         super.setTargetDataSources(targetDataSources);
  10.     }
  11.     @Override
  12.     protected Object determineCurrentLookupKey() {
  13.         return DataSourceContextHolder.getDataSource();
  14.     }
  15. }

上述代码中,还实现了一个动态数据源类的构造方法,主要是为了设置默认数据源,以及以Map保存的各种目标数据源。其中Map的key是设置的数据源名称,value则是对应的数据源(DataSource)。

2.3 配置数据库

application.yml中配置数据库信息:

  1. #设置数据源
  2. spring:
  3.   datasource:
  4.     type: com.alibaba.druid.pool.DruidDataSource
  5.     druid:
  6.       master:
  7.         url: jdbc:mysql://xxxxxx:3306/test1?characterEncoding=utf-8&allowMultiQueries=true&zeroDateTimeBehavior=convertToNull&useSSL=false
  8.         username: root
  9.         password: 123456
  10.         driver-class-name: com.mysql.cj.jdbc.Driver
  11.       slave:
  12.         url: jdbc:mysql://xxxxx:3306/test2?characterEncoding=utf-8&allowMultiQueries=true&zeroDateTimeBehavior=convertToNull&useSSL=false
  13.         username: root
  14.         password: 123456
  15.         driver-class-name: com.mysql.cj.jdbc.Driver
  16.       initial-size: 15
  17.       min-idle: 15
  18.       max-active: 200
  19.       max-wait: 60000
  20.       time-between-eviction-runs-millis: 60000
  21.       min-evictable-idle-time-millis: 300000
  22.       validation-query: ""
  23.       test-while-idle: true
  24.       test-on-borrow: false
  25.       test-on-return: false
  26.       pool-prepared-statements: false
  27.       connection-properties: false
  28. /**
  29.  * @author: jiangjs
  30.  * @description: 设置数据源
  31.  * @date2023/7/27 11:34
  32.  **/
  33. @Configuration
  34. public class DateSourceConfig {
  35.     @Bean
  36.     @ConfigurationProperties("spring.datasource.druid.master")
  37.     public DataSource masterDataSource(){
  38.         return DruidDataSourceBuilder.create().build();
  39.     }
  40.     @Bean
  41.     @ConfigurationProperties("spring.datasource.druid.slave")
  42.     public DataSource slaveDataSource(){
  43.         return DruidDataSourceBuilder.create().build();
  44.     }
  45.     @Bean(name = "dynamicDataSource")
  46.     @Primary
  47.     public DynamicDataSource createDynamicDataSource(){
  48.         Map<Object,Object> dataSourceMap = new HashMap<>();
  49.         DataSource defaultDataSource = masterDataSource();
  50.         dataSourceMap.put("master",defaultDataSource);
  51.         dataSourceMap.put("slave",slaveDataSource());
  52.         return new DynamicDataSource(defaultDataSource,dataSourceMap);
  53.     }
  54. }

通过配置类,将配置文件中的配置的数据库信息转换成datasource,并添加到DynamicDataSource中,同时通过@Bean将DynamicDataSource注入Spring中进行管理,后期在进行动态数据源添加时,会用到。

 
 

2.4 测试

在主从两个测试库中,分别添加一张表test_user,里面只有一个字段user_name。

  1. create table test_user(
  2.   user_name varchar(255not null comment '用户名'
  3. )

在主库添加信息:

insert into test_user (user_namevalue ('master');

从库中添加信息:

insert into test_user (user_namevalue ('slave');

我们创建一个getData的方法,参数就是需要查询数据的数据源名称。

  1. @GetMapping("/getData.do/{datasourceName}")
  2. public String getMasterData(@PathVariable("datasourceName"String datasourceName){
  3.     DataSourceContextHolder.setDataSource(datasourceName);
  4.     TestUser testUser = testUserMapper.selectOne(null);
  5.     DataSourceContextHolder.removeDataSource();
  6.     return testUser.getUserName();
  7. }

其他的Mapper和实体类大家自行实现。

执行结果:

1、传递master时:

图片

img

2、传递slave时:

图片

img

通过执行结果,我们看到传递不同的数据源名称,查询对应的数据库是不一样的,返回结果也不一样。

在上述代码中,我们看到DataSourceContextHolder.setDataSource(datasourceName);来设置了当前线程需要查询的数据库,通过DataSourceContextHolder.removeDataSource();来移除当前线程已设置的数据源。使用过Mybatis-plus动态数据源的小伙伴,应该还记得我们在使用切换数据源时会使用到DynamicDataSourceContextHolder.push(String ds);DynamicDataSourceContextHolder.poll();这两个方法,翻看源码我们会发现其实就是在使用ThreadLocal时使用了栈,这样的好处就是能使用多数据源嵌套,这里就不带大家实现了,有兴趣的小伙伴可以看看Mybatis-plus中动态数据源的源码。

注:启动程序时,小伙伴不要忘记将SpringBoot自动添加数据源进行排除哦,否则会报循环依赖问题。

@SpringBootApplication(exclude = DataSourceAutoConfiguration.class)

2.5 优化调整

2.5.1 注解切换数据源

在上述中,虽然已经实现了动态切换数据源,但是我们会发现如果涉及到多个业务进行切换数据源的话,我们就需要在每一个实现类中添加这一段代码。

说到这有小伙伴应该就会想到使用注解来进行优化,接下来我们来实现一下。

2.5.1.1 定义注解

我们就用mybatis动态数据源切换的注解:DS,代码如下:

  1. /**
  2.  * @author: jiangjs
  3.  * @description:
  4.  * @date2023/7/27 14:39
  5.  **/
  6. @Target({ElementType.METHOD,ElementType.TYPE})
  7. @Retention(RetentionPolicy.RUNTIME)
  8. @Documented
  9. @Inherited
  10. public @interface DS {
  11.     String value() default "master";
  12. }
2.5.1.2 实现aop
  1. @Aspect
  2. @Component
  3. @Slf4j
  4. public class DSAspect {
  5.     @Pointcut("@annotation(com.jiashn.dynamic_datasource.dynamic.aop.DS)")
  6.     public void dynamicDataSource(){}
  7.     @Around("dynamicDataSource()")
  8.     public Object datasourceAround(ProceedingJoinPoint point) throws Throwable {
  9.         MethodSignature signature = (MethodSignature)point.getSignature();
  10.         Method method = signature.getMethod();
  11.         DS ds = method.getAnnotation(DS.class);
  12.         if (Objects.nonNull(ds)){
  13.             DataSourceContextHolder.setDataSource(ds.value());
  14.         }
  15.         try {
  16.             return point.proceed();
  17.         } finally {
  18.             DataSourceContextHolder.removeDataSource();
  19.         }
  20.     }
  21. }

代码使用了@Around,通过ProceedingJoinPoint获取注解信息,拿到注解传递值,然后设置当前线程的数据源。对aop不了解的小伙伴可以自行google或百度。

2.5.1.3 测试

添加两个测试方法:

  1. @GetMapping("/getMasterData.do")
  2. public String getMasterData(){
  3.     TestUser testUser = testUserMapper.selectOne(null);
  4.     return testUser.getUserName();
  5. }
  6. @GetMapping("/getSlaveData.do")
  7. @DS("slave")
  8. public String getSlaveData(){
  9.     TestUser testUser = testUserMapper.selectOne(null);
  10.     return testUser.getUserName();
  11. }

由于@DS中设置的默认值是:master,因此在调用主数据源时,可以不用进行添加。

执行结果:

1、调用getMasterData.do方法:

图片

img

2、调用getSlaveData.do方法:

图片

img

通过执行结果,我们通过@DS也进行了数据源的切换,实现了Mybatis-plus动态切换数据源中的通过注解切换数据源的方式。

2.5.2 动态添加数据源

业务场景:有时候我们的业务会要求我们从保存有其他数据源的数据库表中添加这些数据源,然后再根据不同的情况切换这些数据源。

因此我们需要改造下DynamicDataSource来实现动态加载数据源。

 
 


 

2.5.2.1 数据源实体
  1. java复制代码/**
  2.  * @author: jiangjs
  3.  * @description: 数据源实体
  4.  * @date2023/7/27 15:55
  5.  **/
  6. @Data
  7. @Accessors(chain = true)
  8. public class DataSourceEntity {
  9.     /**
  10.      * 数据库地址
  11.      */
  12.     private String url;
  13.     /**
  14.      * 数据库用户名
  15.      */
  16.     private String userName;
  17.     /**
  18.      * 密码
  19.      */
  20.     private String passWord;
  21.     /**
  22.      * 数据库驱动
  23.      */
  24.     private String driverClassName;
  25.     /**
  26.      * 数据库key,即保存Map中的key
  27.      */
  28.     private String key;
  29. }

实体中定义数据源的一般信息,同时定义一个key用于作为DynamicDataSource中Map中的key。

2.5.2.2 修改DynamicDataSource
  1. /**
  2.  * @author: jiangjs
  3.  * @description: 实现动态数据源,根据AbstractRoutingDataSource路由到不同数据源中
  4.  * @date2023/7/27 11:18
  5.  **/
  6. @Slf4j
  7. public class DynamicDataSource extends AbstractRoutingDataSource {
  8.     private final Map<Object,Object> targetDataSourceMap;
  9.     public DynamicDataSource(DataSource defaultDataSource,Map<ObjectObject> targetDataSources){
  10.         super.setDefaultTargetDataSource(defaultDataSource);
  11.         super.setTargetDataSources(targetDataSources);
  12.         this.targetDataSourceMap = targetDataSources;
  13.     }
  14.     @Override
  15.     protected Object determineCurrentLookupKey() {
  16.         return DataSourceContextHolder.getDataSource();
  17.     }
  18.     /**
  19.      * 添加数据源信息
  20.      * @param dataSources 数据源实体集合
  21.      * @return 返回添加结果
  22.      */
  23.     public void createDataSource(List<DataSourceEntity> dataSources){
  24.         try {
  25.             if (CollectionUtils.isNotEmpty(dataSources)){
  26.                 for (DataSourceEntity ds : dataSources) {
  27.                     //校验数据库是否可以连接
  28.                     Class.forName(ds.getDriverClassName());
  29.                     DriverManager.getConnection(ds.getUrl(),ds.getUserName(),ds.getPassWord());
  30.                     //定义数据源
  31.                     DruidDataSource dataSource = new DruidDataSource();
  32.                     BeanUtils.copyProperties(ds,dataSource);
  33.                     //申请连接时执行validationQuery检测连接是否有效,这里建议配置为TRUE,防止取到的连接不可用
  34.                     dataSource.setTestOnBorrow(true);
  35.                     //建议配置为true,不影响性能,并且保证安全性。
  36.                     //申请连接的时候检测,如果空闲时间大于timeBetweenEvictionRunsMillis,执行validationQuery检测连接是否有效。
  37.                     dataSource.setTestWhileIdle(true);
  38.                     //用来检测连接是否有效的sql,要求是一个查询语句。
  39.                     dataSource.setValidationQuery("select 1 ");
  40.                     dataSource.init();
  41.                     this.targetDataSourceMap.put(ds.getKey(),dataSource);
  42.                 }
  43.                 super.setTargetDataSources(this.targetDataSourceMap);
  44.                 // 将TargetDataSources中的连接信息放入resolvedDataSources管理
  45.                 super.afterPropertiesSet();
  46.                 return Boolean.TRUE;
  47.             }
  48.         }catch (ClassNotFoundException | SQLException e) {
  49.             log.error("---程序报错---:{}", e.getMessage());
  50.         }
  51.         return Boolean.FALSE;
  52.     }
  53.     /**
  54.      * 校验数据源是否存在
  55.      * @param key 数据源保存的key
  56.      * @return 返回结果,true:存在,false:不存在
  57.      */
  58.     public boolean existsDataSource(String key){
  59.         return Objects.nonNull(this.targetDataSourceMap.get(key));
  60.     }
  61. }

在改造后的DynamicDataSource中,我们添加可以一个 private final Map<Object,Object> targetDataSourceMap,这个map会在添加数据源的配置文件时将创建的Map数据源信息通过DynamicDataSource构造方法进行初始赋值,即:DateSourceConfig类中的createDynamicDataSource()方法中。

同时我们在该类中添加了一个createDataSource方法,进行数据源的创建,并添加到map中,再通过super.setTargetDataSources(this.targetDataSourceMap);进行目标数据源的重新赋值。

2.5.2.3 动态添加数据源

上述代码已经实现了添加数据源的方法,那么我们来模拟通过从数据库表中添加数据源,然后我们通过调用加载数据源的方法将数据源添加进数据源Map中。

在主数据库中定义一个数据库表,用于保存数据库信息。

  1. create table test_db_info(
  2.     id int auto_increment primary key not null comment '主键Id',
  3.     url varchar(255not null comment '数据库URL',
  4.     username varchar(255not null comment '用户名',
  5.     password varchar(255not null comment '密码',
  6.     driver_class_name varchar(255not null comment '数据库驱动'
  7.     name varchar(255not null comment '数据库名称'
  8. )

为了方便,我们将之前的从库录入到数据库中,修改数据库名称。

  1. insert into test_db_info(url, username, password,driver_class_name, name)
  2. value ('jdbc:mysql://xxxxx:3306/test2?characterEncoding=utf-8&allowMultiQueries=true&zeroDateTimeBehavior=convertToNull&useSSL=false',
  3.        'root','123456','com.mysql.cj.jdbc.Driver','add_slave')

数据库表对应的实体、mapper,小伙伴们自行添加。

启动SpringBoot时添加数据源:

  1. /**
  2.  * @author: jiangjs
  3.  * @description:
  4.  * @date2023/7/27 16:56
  5.  **/
  6. @Component
  7. public class LoadDataSourceRunner implements CommandLineRunner {
  8.     @Resource
  9.     private DynamicDataSource dynamicDataSource;
  10.     @Resource
  11.     private TestDbInfoMapper testDbInfoMapper;
  12.     @Override
  13.     public void run(String... args) throws Exception {
  14.         List<TestDbInfo> testDbInfos = testDbInfoMapper.selectList(null);
  15.         if (CollectionUtils.isNotEmpty(testDbInfos)) {
  16.             List<DataSourceEntity> ds = new ArrayList<>();
  17.             for (TestDbInfo testDbInfo : testDbInfos) {
  18.                 DataSourceEntity sourceEntity = new DataSourceEntity();
  19.                 BeanUtils.copyProperties(testDbInfo,sourceEntity);
  20.                 sourceEntity.setKey(testDbInfo.getName());
  21.                 ds.add(sourceEntity);
  22.             }
  23.             dynamicDataSource.createDataSource(ds);
  24.         }
  25.     }
  26. }

经过上述SpringBoot启动后,已经将数据库表中的数据添加到动态数据源中,我们调用之前的测试方法,将数据源名称作为参数传入看看执行结果。

2.5.2.4 测试

图片

img

通过测试我们发现数据库表中的数据库被动态加入了数据源中,小伙伴可以愉快地随意添加数据源了。

好了,今天就跟大家唠叨到这,希望我的叨叨让大家对于动态切换数据源的方式能够有更深地理解。

原文地址:SpringBoot实现动态切换数据源:轻松应对复杂多变业务需求!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/902919
推荐阅读
相关标签
  

闽ICP备14008679号