Spring Boot系列(三) Spring Boot 之 JDBC
数据源
类型
javax.sql.DataSourcejavax.sql.XADataSourceorg.springframework.jdbc.datasource.embedded,EnbeddedDataSource
Spring Boot 中的数据源
单数据源(官方推荐微服务使用单数据源)
数据库连接池
Apache Commons DBCP
Tomcat DBCP
多数据源
实际生产中很可能会出现.
事务
Spring 中的事务通过
PlatformTransactionManagere管理, 使用 AOP 实现, 具体实现类是TransactionInterceptor.事务传播(propagation)与保护点(savepoint): 二者密切相关.
Spring Boot 使用JDBC
单数据源
- 配置:
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/product?serverTimezone=Hongkong&useUnicode=true&characterEncoding=utf8&useSSL=false
spring.datasource.username=xlx
spring.datasource.password=xlx
注意serverTimezone的配置, 亚洲一般配置为 Hongkong.
- 访问类注入
DataSource
@Repository
public class ProductRepository {
@Autowired
private DataSource dataSource;
...
}
多数据源配置
- 配置
spring.ds1.name=master
spring.ds1.driver-class-name=com.mysql.cj.jdbc.Driver
spring.ds1.url=jdbc:mysql://localhost:3306/product?serverTimezone=Hongkong&useUnicode=true&characterEncoding=utf8&useSSL=false
spring.ds1.username=xlx
spring.ds1.password=xlx
spring.ds2.name=slave
spring.ds2.driver-class-name=com.mysql.cj.jdbc.Driver
spring.ds2.url=jdbc:mysql://localhost:3306/product?serverTimezone=Hongkong&useUnicode=true&characterEncoding=utf8&useSSL=false
spring.ds2.username=xlx
spring.ds2.password=xlx
- 继承
AbstractRoutingDataSource抽象类并实现方法determineCurrentLookupKey()
这个类就是需要使用的数据源类型.
public class DynamicDataSource extends AbstractRoutingDataSource {
@Override
protected Object determineCurrentLookupKey() {
return DbTypeContextHolder.get();
}
}
查看 AbstractRoutingDataSource 的源码可以发现, 其定义了一个 Map<Object, Object> targetDataSources; 用来保存多数据源, 而上面重写的方法返回的就是需要使用的数据源的key.
public enum DBType {
MASTER,
SLAVE
}
- 定义
DbTypeContextHolder其中使用一个ThreadLocal来保存key, 三个方法都必不可少. 分别用来获取, 设置, 清除.
@Slf4j
public class DbTypeContextHolder {
private final static ThreadLocal<DBType> holder = new ThreadLocal<DBType>();
private final static ThreadLocal<Boolean> alwaysWrite = new ThreadLocal<Boolean>();
public static DBType get() {
if (alwaysWrite.get() != null && alwaysWrite.get()) {
log.info("将强制使用Write");
return DBType.MASTER;
}
log.info("获取到: "+holder.get().name());
return holder.get();
}
public static void set(DBType dbType) {
log.info("设置为: "+dbType.name());
holder.set(dbType);
}
public static void clean() {
log.info("清除...");
holder.remove();
}
public static void setAlwaysWrite() {
log.info("设置强制Write");
alwaysWrite.set(true);
}
public static void cleanAlwaysWrite() {
log.info("清除强制Write");
clean();
alwaysWrite.remove();
}
}
- 定义数据源配置类
MultiDataSourceConfiguration
@Configuration
public class MultiDataSourceConfiguration {
@Autowired
Environment environment;
@Bean
public DataSource getDynamicDataSource(){
DynamicDataSource dynamicDataSource = new DynamicDataSource();
Map<Object,Object> map = new HashMap<>();
for (int i = 1; i < 3 ; i++) {
String name = environment.getProperty("spring.ds"+String.valueOf(i)+".name");
if (name==null) break;
DataSource dataSource = DataSourceBuilder.create()
.driverClassName(environment.getProperty("spring.ds"+String.valueOf(i)+".driver-class-name"))
.username(environment.getProperty("spring.ds"+String.valueOf(i)+".username"))
.url(environment.getProperty("spring.ds"+String.valueOf(i)+".url"))
.password(environment.getProperty("spring.ds"+String.valueOf(i)+".password"))
.build();
if (name.trim().toUpperCase().equals("MASTER")){
dynamicDataSource.setDefaultTargetDataSource(dataSource);
map.put(DBType.MASTER,dataSource);
}else{
map.put(DBType.SLAVE,dataSource);
}
}
dynamicDataSource.setTargetDataSources(map);
return dynamicDataSource;
}
}
- 检查是否可用
public Boolean save(Product product) throws SQLException {
System.out.println("save product : "+product);
DbTypeContextHolder.set(DBType.MASTER);
System.out.println(dataSource.getConnection());
DbTypeContextHolder.clean();
DbTypeContextHolder.set(DBType.SLAVE);
System.out.println(dataSource.getConnection());
DbTypeContextHolder.clean();
return true;
}
结果如下,说明是两个不同的数据源:
HikariProxyConnection@1667860231 wrapping com.mysql.cj.jdbc.ConnectionImpl@78794b01
HikariProxyConnection@556437990 wrapping com.mysql.cj.jdbc.ConnectionImpl@314c0916
- 自动切换
可以定义切面来自动切换数据源. 比如普通的读写分离.
读写分离是通过定义在仓储层方法上的规则来实现, 同时也定义了在服务层必须使用写库来读取数据的方式.
除此之外, 如果使用 @Transactional , 因为其也是通过AOP方式实现, 所以与自动切换的AOP存在顺序关系, 为了能在 @Transactional 事务前设置好数据源, 需要增加 @Order(0) .
@Aspect
@Component
@Order(0)
public class DataSourceAspect {
// 必须使用写库的
@Pointcut("execution(* com.xlx.product.repository.repo..*.save*(..)) || execution(* com.xlx.product.repository.repo..*.insert*(..)) || execution(* com.xlx.product.repository.repo..*.update*(..))")
public void write(){}
@Before("write()")
public void beforeWrite(JoinPoint joinPoint){
System.out.println("beforeWrite()"+joinPoint.getSignature().getName());
DbTypeContextHolder.set(DBType.MASTER);
}
@After("write()")
public void afterWrite(JoinPoint joinPoint){
DbTypeContextHolder.clean();
}
// 必须使用读库的
@Pointcut("execution(* com.xlx.product.repository.repo..*.get*(..))|| execution(* com.xlx.product.repository.repo..*.select*(..))||execution(* com.xlx.product.repository.repo..*.count*(..))")
public void read(){}
@Before("read()")
public void beforeRead(JoinPoint joinPoint){
DbTypeContextHolder.set(DBType.SLAVE);
}
@After("read()")
public void afterRead(JoinPoint joinPoint){
DbTypeContextHolder.clean();
}
// 服务层有注解的方法特殊处理
@Pointcut("@annotation(org.springframework.transaction.annotation.Transactional)" +
"||@annotation(com.xlx.product.repository.annotation.DBTypeAnnotation)")
public void readWrite(){}
@Before("readWrite()")
public void before(JoinPoint joinPoint){
MethodSignature methodSignature = (MethodSignature)joinPoint.getSignature();
if(methodSignature.getMethod().isAnnotationPresent(Transactional.class)) DbTypeContextHolder.set(DBType.MASTER);
if(methodSignature.getMethod().isAnnotationPresent(DBTypeAnnotation.class)) DbTypeContextHolder.setAlwaysWrite();
}
@After("readWrite()")
public void after(JoinPoint joinPoint){
DbTypeContextHolder.clean();
DbTypeContextHolder.cleanAlwaysWrite();
}
}
/**
* 放置在方法上的注解, 用来指定使用的数据源类型, 默认使用主数据源
*/
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface DBTypeAnnotation {
@AliasFor("values")
DBType dbType() default DBType.MASTER;
@AliasFor("dbType")
DBType values() default DBType.MASTER;
}
- service 和 controller
@Service
@Slf4j
public class ProductService {
@Autowired
ProductRepository repository;
public String findAndSave(){
log.info("findAndSave() 方法开始.....");
String rs = testFunc();
log.info("findAndSave() 方法结束.....");
return rs;
}
@DBTypeAnnotation
public String findAndSaveWithWrite(){
log.info("findAndSaveWithWrite() 方法开始.....");
String rs = testFunc();
log.info("findAndSaveWithWrite() 方法结束.....");
return rs;
}
private String testFunc() {
List<Product> productList = repository.selectAll();
repository.saveProduct(productList.get(0));
productList = repository.selectAll();
repository.saveProduct(productList.get(0));
return "ok";
}
}
@RestController
public class ProductController {
@Autowired
ProductService productService;
@GetMapping("/product/findAndSave")
public String findAndSave()throws SQLException {
return productService.findAndSave();
}
@GetMapping("/product/findAndSaveWithWrite")
public String findAndSaveWithWrite()throws SQLException {
return productService.findAndSaveWithWrite();
}
}
Spring Boot系列(三) Spring Boot 之 JDBC的更多相关文章
- Spring框架系列(2) - Spring简单例子引入Spring要点
上文中我们简单介绍了Spring和Spring Framework的组件,那么这些Spring Framework组件是如何配合工作的呢?本文主要承接上文,向你展示Spring Framework组件 ...
- Spring框架系列(6) - Spring IOC实现原理详解之IOC体系结构设计
在对IoC有了初步的认知后,我们开始对IOC的实现原理进行深入理解.本文将帮助你站在设计者的角度去看IOC最顶层的结构设计.@pdai Spring框架系列(6) - Spring IOC实现原理详解 ...
- Spring框架系列(8) - Spring IOC实现原理详解之Bean实例化(生命周期,循环依赖等)
上文,我们看了IOC设计要点和设计结构:以及Spring如何实现将资源配置(以xml配置为例)通过加载,解析,生成BeanDefination并注册到IoC容器中的:容器中存放的是Bean的定义即Be ...
- Spring框架系列(12) - Spring AOP实现原理详解之JDK代理实现
上文我们学习了SpringAOP Cglib动态代理的实现,本文主要是SpringAOP JDK动态代理的案例和实现部分.@pdai Spring框架系列(12) - Spring AOP实现原理详解 ...
- Spring框架系列(7) - Spring IOC实现原理详解之IOC初始化流程
上文,我们看了IOC设计要点和设计结构:紧接着这篇,我们可以看下源码的实现了:Spring如何实现将资源配置(以xml配置为例)通过加载,解析,生成BeanDefination并注册到IoC容器中的. ...
- Spring框架系列(9) - Spring AOP实现原理详解之AOP切面的实现
前文,我们分析了Spring IOC的初始化过程和Bean的生命周期等,而Spring AOP也是基于IOC的Bean加载来实现的.本文主要介绍Spring AOP原理解析的切面实现过程(将切面类的所 ...
- Spring框架系列(10) - Spring AOP实现原理详解之AOP代理的创建
上文我们介绍了Spring AOP原理解析的切面实现过程(将切面类的所有切面方法根据使用的注解生成对应Advice,并将Advice连同切入点匹配器和切面类等信息一并封装到Advisor).本文在此基 ...
- Spring框架系列(11) - Spring AOP实现原理详解之Cglib代理实现
我们在前文中已经介绍了SpringAOP的切面实现和创建动态代理的过程,那么动态代理是如何工作的呢?本文主要介绍Cglib动态代理的案例和SpringAOP实现的原理.@pdai Spring框架系列 ...
- 【Spring Boot&&Spring Cloud系列】Spring Boot中使用NoSql数据库Redis
github地址:https://github.com/AndyFlower/Spring-Boot-Learn/tree/master/spring-boot-nosql-redis 一.加入依赖到 ...
随机推荐
- linux系统下如何在vscode中调试C++代码
本篇博客以一个简单的hello world程序,介绍在vscode中调试C++代码的配置过程. 1. 安装编译器 vscode是一个轻量的代码编辑器,并不具备代码编译功能,代码编译需要交给编译器完成. ...
- Python format格式化时使用‘’{‘’或者‘’}‘’
用format格式化时,如果其中要用到‘’{‘’或者‘’}‘’,需要进行转义,否则报错 {{ ,}}使用同样的符号实现转义,而不是‘/’
- blazeFace
围绕四个点构造模型 1.扩大感受野 使用5*5卷积替换3*3来扩大感受野,在深度分离卷积中,pw与dw计算比为d/k^2,d为输出通道,k为 dw的卷积核,即增加dw的卷积核所带来的计算并不大. 在M ...
- 2.docker基础用法
一.前言 OCI(Open Container Initiative):由Linux基金会主导于2015年6月创立,OCI定义了容器运行时的标准. OCI有两部分组成: the Runtime Spe ...
- Mybatis入门教程之新增、更新、删除功能_java - JAVA
文章来源:嗨学网 敏而好学论坛www.piaodoo.com 欢迎大家相互学习 上一节说了Mybatis的框架搭建和简单查询,这次我们来说一说用Mybatis进行基本的增删改操作: 一. 插入一条数据 ...
- SQL Server清理索引碎片
DECLARE @SchemeName NVARCHAR(MAX)=N''; DECLARE @TableName NVARCHAR(MAX)=N''; DECLARE @IndexName NVAR ...
- mysql UNION操作符 语法
mysql UNION操作符 语法 作用:用于合并两个或多个 SELECT 语句的结果集. 语法:SELECT column_name(s) FROM table_name1 UNION SELECT ...
- 舞蹈课(dancingLessons)
有n个人参加一个舞蹈课.每个人的舞蹈技术由整数ai来决定.在舞蹈课的开始,他们从左到右站成一排.当这一排中至少有一对相邻的异性时,舞蹈技术相差最小的那一对会出列并开始跳舞.如果相差最小的不止一对,那么 ...
- [design pattern](1) Strategy
引言 最近,在学习设计模式相关的知识.本博客主要想讲一讲策略模式,这也是我学习的第一个模式.写下这篇博客,主要想记录下个人的一点理解,也是想通过写博客的方式来加深对与Strategy的一点理解.以下的 ...
- 个推一键认证SDK重磅推出,打造秒级登录体验,让用户一“键”倾心
移动互联网时代,用户注意力的持续时间越来越短,他们追求便捷与高效.从账号密码登录.短信验证,到第三方登录甚至人脸识别登录,APP的注册/登录方式在逐步变化,开发者希望在这重要的交互端口提升用户的体验, ...