Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 3.65 KB

README.md

File metadata and controls

44 lines (34 loc) · 3.65 KB

Spring R2dbc Example

This repository contains the latest changes in the Spring R2dbc(part of Spring Framework 5.3), Spring Data R2dbc 1.2 and Spring Boot 2.4.

I have created several R2dbc examples in the spring-reactive-sample repository since it was born. But Spring Data R2dbc evolved very quickly, thre are plenty of breaking changes introduced since Spring 5.2 and Spring Data R2dbc 1.2.

Compare to the Spring Data R2dbc 1.1, some breaking changes are notable.

  • The old DatabaseClient in Spring Data R2dbc 1.1 was split into two parts, a simple new DatabaseClient is part of Spring framework, as an alternative of Jdbc.
  • Another part of the old DatabaseClient is reorganized into a new class R2dbcEntityTemplate which acts as the role of JdbcTemplate.

Notes

Sample Codes

Example Description
connection-factories R2dbc driver's ConnectionFactory examples for MySQL, H2, PostgreSQL, MSSQL, Oracle, etc
database-client Spring R2dbc DatabaseClient example
data-r2dbc-entitytemplates Spring Data R2dbc R2dbcEntityTemplate example
data-r2dbc-repositories Spring Data R2dbc R2dbcRepository interface example
entitycallbacks Spring Data R2dbc BeforeConvertEntityCallback, AfterConvertEntityCallback, etc.
testcontainers Spring Data R2dbc @DataR2dbcTest with Testcontainers.
boot Spring Boot example (with Postgres specific Enum, Json, NOTIFY/LISTEN, etc.)
auditing Spring Data R2dbc Auditing example
kotlin-co Kotlin Coroutines example
jooq R2dbc and JOOQ example

Reference