You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/asciidoc/reference/r2dbc-transactions.adoc
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -6,14 +6,14 @@ Relational databases typically associate a transaction with a single transport c
6
6
Using different connections hence results in utilizing different transactions.
7
7
Spring Data R2DBC includes transaction-awareness in `DatabaseClient` that allows you to group multiple statements within
8
8
the same transaction using https://docs.spring.io/spring/docs/current/spring-framework-reference/data-access.html#transaction[Spring's Transaction Management].
9
-
Spring Data R2DBC provides a implementation for `ReactiveTransactionManager` with `ConnectionFactoryTransactionManager`.
10
-
See <<r2dbc.connections.ConnectionFactoryTransactionManager>> for further details.
9
+
Spring Data R2DBC provides a implementation for `ReactiveTransactionManager` with `R2dbcTransactionManager`.
10
+
See <<r2dbc.connections.R2dbcTransactionManager>> for further details.
11
11
12
12
.Programmatic Transaction Management
13
13
====
14
14
[source,java]
15
15
----
16
-
ReactiveTransactionManager tm = new ConnectionFactoryTransactionManager(connectionFactory);
16
+
ReactiveTransactionManager tm = new R2dbcTransactionManager(connectionFactory);
0 commit comments