Using the Spring Data Framework with MariaDB Connector/R2DBC
Contents
Overview
Java developers can use MariaDB Connector/R2DBC to connect to MariaDB database products using the Reactive Relational Database Connectivity (R2DBC) API. R2DBC operations are non-blocking, which makes it more scalable than Java's standard JDBC API. MariaDB Connector/R2DBC can be used with the very popular Spring Data framework, which can provide support for repositories, object mapping, and transaction management.
This page discusses how to use MariaDB Connector/R2DBC with the Spring Data framework.
For information on how to use MariaDB Connector/R2DBC with the native R2DBC API, refer to, Using MariaDB Connector/R2DBC.
Spring Data R2DBC
Spring Data R2DBC allows MariaDB Connector/R2DBC to be used with the popular Spring Data framework, which is part of the larger Spring Framework.
Spring Data R2DBC is currently in incubation, so it is not yet included with the main Spring Data modules.
Spring Data R2DBC supports many features from the Spring Data framework:
Spring Data Feature | Supported |
---|---|
DatabaseClient | Yes |
Repositories | Yes |
Object Mapping | Yes |
Transaction Management | Yes |
Resources
- Install MariaDB Connector/R2DBC for Spring Data framework
- Development with MariaDB Connector/R2DBC (building your application)
- Using Spring Data R2DBC repositories with Connector/R2DBC
- Transactions
- DML (SELECT, INSERT, UPDATE, DELETE)
- DDL(ALTER TABLE, TRUNCATE TABLE)
- Batch Operations
- Setup for Examples