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-upgrading.adoc
+3-3
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ The following sections explain how to migrate to a newer version of Spring Data
9
9
10
10
Spring Data R2DBC was developed with the intent to evaluate how well R2DBC can integrate with Spring applications.
11
11
One of the main aspects was to move core support into Spring Framework once R2DBC support has proven useful.
12
-
Spring Framework 5.3 ships with a new module: Spring R2DBC.
12
+
Spring Framework 5.3 ships with a new module: Spring R2DBC (`spring-r2dbc`).
13
13
14
14
`spring-r2dbc` ships core R2DBC functionality (a slim variant of `DatabaseClient`, Transaction Manager, Connection Factory initialization, Exception translation) that was initially provided by Spring Data R2DBC. The 1.2.0 release aligns with what's provided in Spring R2DBC by making several changes outlined in the following sections.
15
15
@@ -37,13 +37,13 @@ Spring R2DBC provides a slim exception translation variant without an SPI for no
37
37
=== Usage of replacements provided by Spring R2DBC
38
38
39
39
To ease migration, several deprecated types are now subtypes of their replacements provided by Spring R2DBC. Spring Data R2DBC has changes several methods or introduced new methods accepting Spring R2DBC types.
40
-
Specifically the following classes are affected:
40
+
Specifically the following classes are changed:
41
41
42
42
* `R2dbcEntityTemplate`
43
43
* `R2dbcDialect`
44
44
* Types in `org.springframework.data.r2dbc.query`
45
45
46
-
We recommend that you review your imports if you work with these types directly.
46
+
We recommend that you review and update your imports if you work with these types directly.
0 commit comments