For the latest stable version, please use Spring Data Relational 3.4.0! |
Migration Guide
The following sections explain how to migrate to a newer version of Spring Data R2DBC.
Upgrading from 1.1.x to 1.2.x
Spring Data R2DBC was developed with the intent to evaluate how well R2DBC can integrate with Spring applications.
One of the main aspects was to move core support into Spring Framework once R2DBC support has proven useful.
Spring Framework 5.3 ships with a new module: Spring R2DBC (spring-r2dbc
).
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.
Spring R2DBC’s DatabaseClient
is a more lightweight implementation that encapsulates a pure SQL-oriented interface.
You will notice that the method to run SQL statements changed from DatabaseClient.execute(…)
to DatabaseClient.sql(…)
.
The fluent API for CRUD operations has moved into R2dbcEntityTemplate
.
If you use logging of SQL statements through the logger prefix org.springframework.data.r2dbc
, make sure to update it to org.springframework.r2dbc
(that is removing .data
) to point to Spring R2DBC components.
Deprecations
-
Deprecation of
o.s.d.r2dbc.core.DatabaseClient
and its support classesConnectionAccessor
,FetchSpec
,SqlProvider
and a few more. Named parameter support classes such asNamedParameterExpander
are encapsulated by Spring R2DBC’sDatabaseClient
implementation hence we’re not providing replacements as this was internal API in the first place. Useo.s.r2dbc.core.DatabaseClient
and their Spring R2DBC replacements available fromorg.springframework.r2dbc.core
. Entity-based methods (select
/insert
/update
/delete
) methods are available throughR2dbcEntityTemplate
which was introduced with version 1.1. -
Deprecation of
o.s.d.r2dbc.connectionfactory
,o.s.d.r2dbc.connectionfactory.init
, ando.s.d.r2dbc.connectionfactory.lookup
packages. Use Spring R2DBC’s variant which you can find ato.s.r2dbc.connection
. -
Deprecation of
o.s.d.r2dbc.convert.ColumnMapRowMapper
. Useo.s.r2dbc.core.ColumnMapRowMapper
instead. -
Deprecation of binding support classes
o.s.d.r2dbc.dialect.Bindings
,BindMarker
,BindMarkers
,BindMarkersFactory
and related types. Use replacements fromorg.springframework.r2dbc.core.binding
. -
Deprecation of
BadSqlGrammarException
,UncategorizedR2dbcException
and exception translation ato.s.d.r2dbc.support
. Spring R2DBC provides a slim exception translation variant without an SPI for now available througho.s.r2dbc.connection.ConnectionFactoryUtils#convertR2dbcException
.
Usage of replacements provided by Spring R2DBC
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. Specifically the following classes are changed:
-
R2dbcEntityTemplate
-
R2dbcDialect
-
Types in
org.springframework.data.r2dbc.query
We recommend that you review and update your imports if you work with these types directly.