IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> PHP知识库 -> 统一的事务处理 -> 正文阅读

[PHP知识库]统一的事务处理

前言

项目中使用到事务的地方基本上是增删改,即对数据库的无论是新增、删除、修改都是修改操作,一般情况下一个接口中的多表修改操作基本上要用到@Transacational注解,但是后来发现没有用到@Transacational?注解也实现了这个效果,询问了一下老同事应该是已经全局定义了事务,如下

DruidDataSource数据源的自定义配置

package com.wscar.xny.auth.config;

import com.alibaba.druid.pool.DruidDataSource;
import com.wscar.xny.commons.utils.Base64;
import lombok.ToString;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
@ToString
@Slf4j
public class DateSourceConfig {
	@Value("${druid.driverClassName:}")
	private String driverClassName;

	@Value("${druid.url:}")
	private String url;

	@Value("${druid.username:}")
	private String userName;

	@Value("${druid.password:}")
	private String password;

	@Value("${druid.filters:}")
	private String filters;

	@Value("${druid.initialSize:}")
	private Integer initialSize;

	@Value("${druid.maxActive:}")
	private Integer maxActive;

	@Value("${druid.minIdle:}")
	private Integer minIdle;

	@Value("${druid.maxWait:}")
	private Integer maxWait;

	@Value("${druid.timeBetweenEvictionRunsMillis:}")
	private Integer timeBetweenEvictionRunsMillis;

	@Value("${druid.minEvictableIdleTimeMillis:}")
	private Integer minEvictableIdleTimeMillis;

	@Value("${druid.validationQuery:}")
	private String validationQuery;

	@Value("${druid.testWhileIdle:true}")
	private boolean testWhileIdle;

	@Value("${druid.testOnBorrow:true}")
	private boolean testOnBorrow;

	@Value("${druid.testOnReturn:true}")
	private boolean testOnReturn;

	@Value("${druid.removeAbandoned:true}")
	private boolean removeAbandoned;

	@Value("${druid.logAbandoned:true}")
	private boolean logAbandoned;

	@Value("${druid.removeAbandonedTimeout:1800}")
	private Integer removeAbandonedTimeout;

	@Bean
	public DruidDataSource dataSource() {
		log.info("数据库配置文件:" + this.toString());

		try {
			String username = Base64.decode(this.userName, "utf-8");
			String password = Base64.decode(this.password, "utf-8");

			boolean removeAbandoned = true;
			boolean logAbandoned = true;
			Integer removeAbandonedTimeout = 1800;

			DruidDataSource dataSource = new DruidDataSource();
			dataSource.setDriverClassName(this.driverClassName);
			dataSource.setUrl(this.url);
			dataSource.setUsername(username);
			dataSource.setPassword(password);
			dataSource.setFilters(this.filters);
			dataSource.setInitialSize(this.initialSize);
			dataSource.setMaxActive(this.maxActive);
			dataSource.setMinIdle(this.minIdle);
			dataSource.setMaxWait(this.maxWait);
			dataSource.setTimeBetweenEvictionRunsMillis(this.timeBetweenEvictionRunsMillis);
			dataSource.setMinEvictableIdleTimeMillis(this.minEvictableIdleTimeMillis);
			dataSource.setValidationQuery(this.validationQuery);
			dataSource.setTestOnBorrow(this.testOnBorrow);
			dataSource.setTestOnReturn(this.testOnReturn);
			dataSource.setRemoveAbandoned(removeAbandoned);// 打开removeAbandoned功能
			dataSource.setRemoveAbandonedTimeout(removeAbandonedTimeout);
			dataSource.setLogAbandoned(logAbandoned);// 关闭abanded连接时输出错误日志
			dataSource.setTestWhileIdle(this.testWhileIdle);

			dataSource.fill(1);//做数据库连接测试

			return dataSource;
		} catch (Exception e) {
			log.error("初始化dataSource异常", e);
		}

		return null;
	}
}

Aop切面进行事务统一处理

package com.wscar.xny.auth.config;

import org.springframework.aop.Advisor;
import org.springframework.aop.aspectj.AspectJExpressionPointcut;
import org.springframework.aop.support.DefaultPointcutAdvisor;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.jdbc.datasource.DataSourceTransactionManager;
import org.springframework.transaction.interceptor.TransactionInterceptor;

import javax.sql.DataSource;
import java.util.Properties;

@Configuration
public class DbAopTransConfig {
    @Bean
    public TransactionInterceptor txAdvice(@Autowired DataSourceTransactionManager transactionManager) throws Exception {
        //针对add、save、insert、update、modify、remove、delete、change、cancel等开头的方法进行事务处理
        Properties properties = new Properties();
        properties.setProperty("add*", "PROPAGATION_REQUIRED,-Throwable");
        properties.setProperty("save*", "PROPAGATION_REQUIRED,-Throwable");
        properties.setProperty("insert*", "PROPAGATION_REQUIRED,-Throwable");
        properties.setProperty("update*", "PROPAGATION_REQUIRED,-Throwable");
        properties.setProperty("modify*", "PROPAGATION_REQUIRED,-Throwable");
        properties.setProperty("delete*", "PROPAGATION_REQUIRED,-Throwable");
        properties.setProperty("remove*", "PROPAGATION_REQUIRED,-Throwable");
        properties.setProperty("change*", "PROPAGATION_REQUIRED,-Throwable");
        properties.setProperty("cancel*", "PROPAGATION_REQUIRED,-Throwable");
        properties.setProperty("*WithSqlTrans", "PROPAGATION_REQUIRED,-Throwable");
        TransactionInterceptor tsi = new TransactionInterceptor(transactionManager, properties);

        return tsi;
    }

    @Bean
    public DataSourceTransactionManager transactionManager(@Qualifier("dataSource") DataSource dataSource) {
        DataSourceTransactionManager bean = new DataSourceTransactionManager();
        bean.setDataSource(dataSource);

        return bean;
    }

    @Bean
    public Advisor txAdviceAdvisor(@Autowired TransactionInterceptor txAdvice) {
        AspectJExpressionPointcut pointcut = new AspectJExpressionPointcut();
        //切入点是impl包下的所有包或者类下的方法
        pointcut.setExpression("execution(* com.wscar.xny.auth.service.impl.*.*(..))");
        return new DefaultPointcutAdvisor(pointcut, txAdvice);
    }
}

?项目结构

?推荐博客

?Springboot的切点可配置化-DefaultPointcutAdvisor_sinat_31396769的博客-CSDN博客

如遇到知识性的错误,请留言?

?

  PHP知识库 最新文章
Laravel 下实现 Google 2fa 验证
UUCTF WP
DASCTF10月 web
XAMPP任意命令执行提升权限漏洞(CVE-2020-
[GYCTF2020]Easyphp
iwebsec靶场 代码执行关卡通关笔记
多个线程同步执行,多个线程依次执行,多个
php 没事记录下常用方法 (TP5.1)
php之jwt
2021-09-18
上一篇文章      下一篇文章      查看所有文章
加:2021-09-20 15:33:56  更:2021-09-20 15:34:13 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 12:55:41-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码