- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Spring事务执行流程及如何创建事务由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
接上节内容,Spring事务执行原理通过创建一个BeanFactoryTransactionAttributeSourceAdvisor,并把TransactionInterceptor注入进去,而TransactionInterceptor实现了Advice接口。而Spring Aop在Spring中会把Advisor中的Advice转换成拦截器链,然后调用.
获取对应事务属性,具体代码执行流程如下:
1
|
final
TransactionAttribute txAttr = getTransactionAttributeSource().getTransactionAttribute(method, targetClass);
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
protected
TransactionAttribute computeTransactionAttribute(Method method, Class<?> targetClass) {
// Don't allow no-public methods as required.
//1. allowPublicMethodsOnly()返回true,只能是公共方法
if
(allowPublicMethodsOnly() && !Modifier.isPublic(method.getModifiers())) {
return
null
;
}
// Ignore CGLIB subclasses - introspect the actual user class.
Class<?> userClass = ClassUtils.getUserClass(targetClass);
// The method may be on an interface, but we need attributes from the target class.
// If the target class is null, the method will be unchanged.
//method代表接口中的方法、specificMethod代表实现类的方法
Method specificMethod = ClassUtils.getMostSpecificMethod(method, userClass);
// If we are dealing with method with generic parameters, find the original method.
//处理泛型
specificMethod = BridgeMethodResolver.findBridgedMethod(specificMethod);
// First try is the method in the target class.
//查看方法中是否存在事务
TransactionAttribute txAttr = findTransactionAttribute(specificMethod);
if
(txAttr !=
null
) {
return
txAttr;
}
// Second try is the transaction attribute on the target class.
//查看方法所在类是否存在事务声明
txAttr = findTransactionAttribute(specificMethod.getDeclaringClass());
if
(txAttr !=
null
&& ClassUtils.isUserLevelMethod(method)) {
return
txAttr;
}
//如果存在接口,则在接口中查找
if
(specificMethod != method) {
// Fallback is to look at the original method.
//查找接口方法
txAttr = findTransactionAttribute(method);
if
(txAttr !=
null
) {
return
txAttr;
}
// Last fallback is the class of the original method.
//到接口类中寻找
txAttr = findTransactionAttribute(method.getDeclaringClass());
if
(txAttr !=
null
&& ClassUtils.isUserLevelMethod(method)) {
return
txAttr;
}
}
return
null
;
}
|
getTransactionAttributeSource()获得的对象是在ProxyTransactionManagementConfiguration创建bean时注入的AnnotationTransactionAttributeSource对象。 AnnotationTransactionAttributeSource中getTransactionAttributeSource方法主要逻辑交给了computeTransactionAttribute方法,所以我们直接看computeTransactionAttribute代码实现.
computeTransactionAttribute方法执行的逻辑是:
所以如果一个方法上用了@Transactional,类上和接口上也用了,以方法上的为主,其次才是类,最后才到接口.
获取TransactionManager,具体代码执行流程如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
protected
PlatformTransactionManager determineTransactionManager(TransactionAttribute txAttr) {
// Do not attempt to lookup tx manager if no tx attributes are set
if
(txAttr ==
null
||
this
.beanFactory ==
null
) {
return
getTransactionManager();
}
String qualifier = txAttr.getQualifier();
if
(StringUtils.hasText(qualifier)) {
return
determineQualifiedTransactionManager(qualifier);
}
else
if
(StringUtils.hasText(
this
.transactionManagerBeanName)) {
return
determineQualifiedTransactionManager(
this
.transactionManagerBeanName);
}
else
{
//常用的会走到这里
PlatformTransactionManager defaultTransactionManager = getTransactionManager();
if
(defaultTransactionManager ==
null
) {
defaultTransactionManager =
this
.transactionManagerCache.get(DEFAULT_TRANSACTION_MANAGER_KEY);
if
(defaultTransactionManager ==
null
) {
//从beanFactory获取PlatformTransactionManager类型的bean
defaultTransactionManager =
this
.beanFactory.getBean(PlatformTransactionManager.
class
);
this
.transactionManagerCache.putIfAbsent(
DEFAULT_TRANSACTION_MANAGER_KEY, defaultTransactionManager);
}
}
return
defaultTransactionManager;
}
}
|
1
2
3
4
|
@Bean
public
PlatformTransactionManager txManager() {
return
new
DataSourceTransactionManager(dataSource());
}
|
代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
@Override
public
final
TransactionStatus getTransaction(TransactionDefinition definition)
throws
TransactionException {
//1.获取事务
Object transaction = doGetTransaction();
// Cache debug flag to avoid repeated checks.
boolean
debugEnabled = logger.isDebugEnabled();
if
(definition ==
null
) {
// Use defaults if no transaction definition given.
definition =
new
DefaultTransactionDefinition();
}
//判断当前线程是否存在事务,判断依据为当前线程记录连接不为空且连接中的(connectionHolder)中的transactionActive属性不为空
if
(isExistingTransaction(transaction)) {
// Existing transaction found -> check propagation behavior to find out how to behave.
return
handleExistingTransaction(definition, transaction, debugEnabled);
}
// Check definition settings for new transaction.
//事务超时设置验证
if
(definition.getTimeout() < TransactionDefinition.TIMEOUT_DEFAULT) {
throw
new
InvalidTimeoutException(
"Invalid transaction timeout"
, definition.getTimeout());
}
// No existing transaction found -> check propagation behavior to find out how to proceed.
//如果当前线程不存在事务,但是@Transactional却声明事务为PROPAGATION_MANDATORY抛出异常
if
(definition.getPropagationBehavior() == TransactionDefinition.PROPAGATION_MANDATORY) {
throw
new
IllegalTransactionStateException(
"No existing transaction found for transaction marked with propagation 'mandatory'"
);
}
//如果当前线程不存在事务,PROPAGATION_REQUIRED、PROPAGATION_REQUIRES_NEW、PROPAGATION_NESTED都得创建事务
else
if
(definition.getPropagationBehavior() == TransactionDefinition.PROPAGATION_REQUIRED ||
definition.getPropagationBehavior() == TransactionDefinition.PROPAGATION_REQUIRES_NEW ||
definition.getPropagationBehavior() == TransactionDefinition.PROPAGATION_NESTED) {
//空挂起
SuspendedResourcesHolder suspendedResources = suspend(
null
);
if
(debugEnabled) {
logger.debug(
"Creating new transaction with name ["
+ definition.getName() +
"]: "
+ definition);
}
try
{
//默认返回true
boolean
newSynchronization = (getTransactionSynchronization() != SYNCHRONIZATION_NEVER);
//构建事务状态
DefaultTransactionStatus status = newTransactionStatus(
definition, transaction,
true
, newSynchronization, debugEnabled, suspendedResources);
//构造transaction、包括设置connectionHolder、隔离级别、timeout
//如果是新事务,绑定到当前线程
doBegin(transaction, definition);
//新事务同步设置,针对当前线程
prepareSynchronization(status, definition);
return
status;
}
catch
(RuntimeException ex) {
resume(
null
, suspendedResources);
throw
ex;
}
catch
(Error err) {
resume(
null
, suspendedResources);
throw
err;
}
}
else
{
// Create "empty" transaction: no actual transaction, but potentially synchronization.
if
(definition.getIsolationLevel() != TransactionDefinition.ISOLATION_DEFAULT && logger.isWarnEnabled()) {
logger.warn(
"Custom isolation level specified but no actual transaction initiated; "
+
"isolation level will effectively be ignored: "
+ definition);
}
//声明事务是PROPAGATION_SUPPORTS
boolean
newSynchronization = (getTransactionSynchronization() == SYNCHRONIZATION_ALWAYS);
return
prepareTransactionStatus(definition,
null
,
true
, newSynchronization, debugEnabled,
null
);
}
}
|
以上就是Spring事务执行流程及如何创建事务的详细内容,更多关于Spring事务执行流程及如何创建的资料请关注我其它相关文章! 。
原文链接:https://segmentfault.com/a/1190000039355506 。
最后此篇关于Spring事务执行流程及如何创建事务的文章就讲到这里了,如果你想了解更多关于Spring事务执行流程及如何创建事务的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我正在使用 PostgREST 将数据库实体暴露给使用这些实体的 Springboot 应用。 我的数据库中有两个实体,分别是 Person 和 City。 我想同时保存 Person 实体和 Cit
1、事务的定义 Redis的事务提供了一种“将多个命令打包, 然后一次性、按顺序地执行”的机制。 redis事务的主要作用就是串联多个命令防止别的命令插队。 但是,事务并不具有传统
SQLite 事务(Transaction) 事务(Transaction)是一个对数据库执行工作单元。事务(Transaction)是以逻辑顺序完成的工作单位或序列,可以是由用户手动操作完成,也可
事务是顺序组操作。 它们作为单个单元运行,并且直到组中的所有操作都成功执行时才终止。 组中的单个故障会导致整个事务失败,并导致对数据库没有影响。 事务符合ACID(原子性,一致性,隔离和耐久性)
我希望将 SqlKata 用于一个项目。但是,项目标准的一部分是查询应该能够作为事务执行。有没有一种方法可以使用 MSSQL 事务执行一个查询或多个查询? 非常感谢。 最佳答案 SQLKata 使用
我只是以多线程方式测试 PetaPoco 事务... 我有一个简单的测试用例: -- 简单的值对象称之为 MediaDevice -- 插入一条记录,更新1000次 void TransactionT
我正在尝试从 Excel VBA 向 SQL 中插入一些数据。 SQL 命令是在 VBA 脚本的过程中构建的,包括使用一些 SQL 变量。 我试图了解事务在 VBA 中是如何工作的,以及它们是否可以处
情况如下: 一个大型生产客户端/服务器系统,其中一个中央数据库表具有某个列,该列的默认值是 NULL,但现在默认值是 0。但是在该更改之前创建的所有行当然仍然具有 null 值,这会在该系统中生成许多
数据库事务是一个熟悉的概念。 try { ... .. updateDB() .. ... commit(); } catch error { rollback(); }
我想了解使用传播支持进行 Spring 交易的用途。 java 文档提到如果具有 @Transactional(propagation = Propagation.SUPPORTS) 的方法从支持该事
我需要获取 hibernate 的事务 ID。对于每笔交易,此 ID 必须是唯一的。我尝试使用 session.getTransaction().hashCode(),但我相信这个值不是唯一的。 最佳
我从 firebase 收到以下消息:runTransactionBlock:启用持久性时检测到的使用情况。请注意,事务不会在应用重新启动后保留。 那么应用程序重新启动后到底会发生什么?由于主数据库的
我需要在 jdbc 中执行选择、更新、插入查询的序列。 这是我的代码: public String editRequest(){ connection = DatabaseUtil.getServi
Java 是否提供了一种智能“聚合”事务的方法?如果我有多个异构数据存储库,我想保持同步(即用于数据的 Postgres、用于图表的 Neo4j 以及用于索引的 Lucene),是否有一个范例仅允许
我对标题中的主题有几个问题。首先,假设我们使用 JDBC,并且有 2 个事务 T1 和 T2。在 T1 中,我们在一个特定的行上执行 select 语句。然后我们对该行执行更新。在事务 T2 中,我们
我有一个 Python CGI 处理支付交易。当用户提交表单时,CGI 被调用。提交后,CGI 需要一段时间才能执行信用卡交易。在此期间,用户可能会按下 ESC 或刷新按钮。这样做不会“杀死”CGI,
我有一个代码,类似这样 def many_objects_saving(list_of_objects): for some_object in list_of_objects:
我有一个包含 100,000 条记录的表。我正在考虑使用事务来更新数据。将有一个查询将一列更新为零,并且大约有 5000 个更新,每个更新将更新一条记录。 这些大型事务对内存有何影响?事务运行时选择数
有没有办法在一个命令中执行 SQL 事务?例如 mysql_query(" START TRANSACTION; INSERT INTO table1 ....etc; INSERT INTO tab
真心希望能帮到你! 我使用以下函数在 PHP/MySql 应用程序中发送消息: public function sendMail($sender_id, $recipient_id, $subject
我是一名优秀的程序员,十分优秀!