SpringBoot入门三十一,多数据源的使用

时间:2022-12-22 14:12:15

一、环境配置

项目基本配置参考​​SpringBoot入门一,使用myEclipse新建一个SpringBoot项目​​,使用MyEclipse新建一个SpringBoot项目即可,数据源使用MyBatis。下面开始多数据源的整合

二、pom.xml主要配置信息

<!-- 引入多数据源支持 -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>dynamic-datasource-spring-boot-starter</artifactId>
<version>3.5.2</version>
</dependency>

三、配置文件添加信息

# ----------------数据库连接基本配置---------------
## 连接池类型,这里我们采用hikari连接池
spring.datasource.type=com.zaxxer.hikari.HikariDataSource
## 设置默认的数据源或者数据源组,默认值即为master
spring.datasource.dynamic.primary=master
## 严格匹配数据源,默认false. true未匹配到指定数据源时抛异常,false使用默认数据源
spring.datasource.dynamic.strict=false

# ----------------多数据源信息配置---------------
## 默认数据源("master"为指定的数据源名称,对应spring.datasource.dynamic.primary的值)
spring.datasource.dynamic.datasource.master.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.dynamic.datasource.master.url=jdbc:mysql://127.0.0.1:3307/qfx_test?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8
spring.datasource.dynamic.datasource.master.username=root
spring.datasource.dynamic.datasource.master.password=666666

## 读库数据源(可多个,"db2"为指定的数据源名称,自定义即可)
spring.datasource.dynamic.datasource.db2.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.dynamic.datasource.db2.url=jdbc:mysql://127.0.0.1:3307/qfx_test2?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8
spring.datasource.dynamic.datasource.db2.username=root
spring.datasource.dynamic.datasource.db2.password=666666

使用说明

1 
(1)线"_",线"_",
(2),,
(3)"master","spring.datasource.dynamic.primary"
(4)

2
# 一主多从 # 多主多从 纯粹多库(记得设置primary) 混合配置
spring: spring: spring: spring:
datasource: datasource: datasource: datasource:
dynamic: dynamic: dynamic: dynamic:
datasource: datasource: datasource: datasource:
master: master_1: mysql: master:
slave_1: master_2: oracle: slave_1:
slave_2: slave_1: sqlserver: slave_2:
slave_3: slave_2: postgresql: oracle_1:
slave_4: slave_3: h2: oracle_2:

四、多数据源使用

1.在DAO类中添加”@DS”注解信息,使用@DS切换数据源.

2."@DS"可以注解在方法上或类上,如果同时存在则采用就近原则:

方法上注解 优先于 类上注解,如果什么都不写则使用默认数据源

3.实际上到这一步多数据源配置就已经完成了

            
----------------------------------------------------
@DS
@DS("dsName") dsName

:
@DS("slave")
public interface StudentDao {
@DS("slave_1")
Student selectByPK(Long id);

List<Student> selectAll();
}

使用:DAO类

import java.util.List;

import com.baomidou.dynamic.datasource.annotation.DS;
import com.qfx.modules.student.entity.Student;

/**
* @DS可以注解在方法上或类上,如果同时存在则采用就近原则:方法上注解 优先于 类上注解
*/
@DS("db2")
public interface StudentDao {
@DS("db2")
Student selectByPK(Long id);

List<Student> selectAll();

int insert(Student student);
}

五、事物控制

多数据源建议使用@DSTransactional

@DSTransactional
public Map<String, Integer> addStudent(Student student) {
return studentDao.insert(student);
}

六、官网

可去官网查看详细使用说明:

​https://gitee.com/baomidou/dynamic-datasource-spring-boot-starter  ​