Skip to content

Commit c36174b

Browse files
committed
Polishing
1 parent 6e5af9d commit c36174b

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

framework-docs/modules/ROOT/pages/data-access/transaction.adoc

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,16 @@ management that delivers the following benefits:
1212
than complex transaction APIs, such as JTA.
1313
* Excellent integration with Spring's data access abstractions.
1414

15-
The following sections describe the Spring Framework's transaction features and
16-
technologies:
15+
The following sections describe the Spring Framework's transaction features and technologies:
1716

18-
* xref:data-access/transaction/motivation.adoc[Advantages of the Spring Framework's transaction support model]
19-
describes why you would use the Spring Framework's transaction abstraction
20-
instead of EJB Container-Managed Transactions (CMT) or choosing to drive local
21-
transactions through a proprietary API, such as Hibernate.
17+
* xref:data-access/transaction/motivation.adoc[Advantages of the Spring Framework's transaction support model]
18+
describes why you would use the Spring Framework's transaction abstraction instead of EJB
19+
Container-Managed Transactions (CMT) or choosing to drive transactions through a proprietary API.
2220
* xref:data-access/transaction/strategies.adoc[Understanding the Spring Framework transaction abstraction]
23-
outlines the core classes and describes how to configure and obtain `DataSource`
24-
instances from a variety of sources.
25-
* xref:data-access/transaction/tx-resource-synchronization.adoc[Synchronizing resources with transactions] describes
26-
how the application code ensures that resources are created, reused, and cleaned up
27-
properly.
21+
outlines the core classes and describes how to configure and obtain `DataSource` instances
22+
from a variety of sources.
23+
* xref:data-access/transaction/tx-resource-synchronization.adoc[Synchronizing resources with transactions]
24+
describes how the application code ensures that resources are created, reused, and cleaned up properly.
2825
* xref:data-access/transaction/declarative.adoc[Declarative transaction management] describes support for
2926
declarative transaction management.
3027
* xref:data-access/transaction/programmatic.adoc[Programmatic transaction management] covers support for

spring-tx/src/main/java/org/springframework/transaction/ReactiveTransaction.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2019 the original author or authors.
2+
* Copyright 2002-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -30,6 +30,7 @@
3030
* @since 5.2
3131
* @see #setRollbackOnly()
3232
* @see ReactiveTransactionManager#getReactiveTransaction
33+
* @see org.springframework.transaction.reactive.TransactionCallback#doInTransaction
3334
*/
3435
public interface ReactiveTransaction extends TransactionExecution {
3536

0 commit comments

Comments
 (0)