All Projects → r2dbc → R2dbc Spi

r2dbc / R2dbc Spi

Licence: apache-2.0
Service Provider Interface for R2DBC Implementations

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to R2dbc Spi

R2dbc Client
Reactive Relational Database Connectivity
Stars: ✭ 347 (+37.7%)
Mutual labels:  api, reactive, reactive-streams, database
R2dbc Mysql
R2DBC MySQL Implementation
Stars: ✭ 417 (+65.48%)
Mutual labels:  reactive, reactive-streams, database
R2dbc Postgresql
Postgresql R2DBC Driver
Stars: ✭ 714 (+183.33%)
Mutual labels:  reactive, reactive-streams, database
Rxjava2 Jdbc
RxJava2 integration with JDBC including Non-blocking Connection Pools
Stars: ✭ 360 (+42.86%)
Mutual labels:  reactive, reactive-streams, database
R2dbc H2
R2DBC H2 Implementation
Stars: ✭ 118 (-53.17%)
Mutual labels:  reactive, reactive-streams, database
Mobx Rest
REST conventions for Mobx
Stars: ✭ 164 (-34.92%)
Mutual labels:  api, reactive
Usaspending Api
Server application to serve U.S. federal spending data via a RESTful API
Stars: ✭ 166 (-34.13%)
Mutual labels:  api, database
Devicemanager.api
Web API Framework demonstrates scalable, multitenant, architecture and allows building its own solution in the minutes. Uses: Entity Framework, UnitOfWork, Repository patterns. Wrapped in Docker, Kubernetes
Stars: ✭ 168 (-33.33%)
Mutual labels:  api, database
Rxgrdb
Reactive extensions for SQLite
Stars: ✭ 176 (-30.16%)
Mutual labels:  reactive, database
Bicing Api
Get statistics and locations of bicycle stations through REST API
Stars: ✭ 149 (-40.87%)
Mutual labels:  api, database
Pulsar4s
Idiomatic, typesafe, and reactive Scala client for Apache Pulsar
Stars: ✭ 172 (-31.75%)
Mutual labels:  reactive, reactive-streams
Proteus
Lean, mean, and incredibly fast JVM framework for web and microservice development.
Stars: ✭ 178 (-29.37%)
Mutual labels:  api, reactive
Awesome Reactive Programming
A repository for sharing all the resources available on Reactive Programming and Reactive Systems
Stars: ✭ 163 (-35.32%)
Mutual labels:  reactive, reactive-streams
Vue Materialize Datatable
A fancy Materialize CSS datatable VueJS component.
Stars: ✭ 162 (-35.71%)
Mutual labels:  reactive, database
Rxjava2 Extras
Utilities for use with RxJava 2
Stars: ✭ 167 (-33.73%)
Mutual labels:  reactive, reactive-streams
Reactive Ms Example
An educational project to learn reactive programming with Spring 5
Stars: ✭ 157 (-37.7%)
Mutual labels:  reactive, reactive-streams
Reactor Addons
Official modules for the Reactor project
Stars: ✭ 175 (-30.56%)
Mutual labels:  reactive, reactive-streams
Play Ws
Standalone Play WS, an async HTTP client with fluent API
Stars: ✭ 190 (-24.6%)
Mutual labels:  reactive, reactive-streams
Autoserver
Create a full-featured REST/GraphQL API from a configuration file
Stars: ✭ 188 (-25.4%)
Mutual labels:  api, database
Barrel Platform
Distributed database for the modern world
Stars: ✭ 201 (-20.24%)
Mutual labels:  reactive, database

Reactive Relational Database Connectivity Service Provider Interface (R2DBC SPI) Build Status Maven Central

The Reactive Relational Database Connectivity (R2DBC) project brings reactive programming APIs to relational databases. R2DBC is a Reactive Foundation project.

In a Nutshell

Based on the Reactive Streams specification. R2DBC is founded on the Reactive Streams specification, which provides a fully-reactive non-blocking API.

Works with relational databases. In contrast to the blocking nature of JDBC, R2DBC allows you to work with SQL databases using a reactive API.

Supports scalable solutions. With Reactive Streams, R2DBC enables you to move from the classic “one thread per connection” model to a more powerful and scalable approach.

Provides an open specification. R2DBC is an open specification and establishes a Service Provider Interface (SPI) for driver vendors to implement and clients to consume.

Code of Conduct

This project is governed by the R2DBC Code of Conduct. By participating, you are expected to uphold this code of conduct. Please report unacceptable behavior to [email protected].

Maven configuration

Artifacts can be found on Maven Central.

<dependency>
  <groupId>io.r2dbc</groupId>
  <artifactId>r2dbc-spi</artifactId>
  <version>${version}</version>
</dependency>

If you'd rather like the latest snapshots of the upcoming major version, use our Maven snapshot repository and declare the appropriate dependency version.

<dependency>
  <groupId>io.r2dbc</groupId>
  <artifactId>r2dbc-spi</artifactId>
  <version>${version}.BUILD-SNAPSHOT</version>
</dependency>

<repository>
  <id>sonatype-nexus-snapshots</id>
  <name>Sonatype OSS Snapshot Repository</name>
  <url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>

Getting Help

Having trouble with R2DBC? We'd love to help!

Reporting Issues

R2DBC uses GitHub as issue tracking system to record bugs and feature requests. If you want to raise an issue, please follow the recommendations below:

  • Before you log a bug, please search the issue tracker to see if someone has already reported the problem.
  • If the issue doesn't already exist, create a new issue.
  • Please provide as much information as possible with the issue report, we like to know the version of R2DBC SPI that you are using and JVM version.
  • If you need to paste code, or include a stack trace use Markdown ``` escapes before and after your text.
  • If possible try to create a test-case or project that replicates the issue. Attach a link to your code or a compressed file containing your code.

Building from Source

You don't need to build from source to use R2DBC SPI (binaries in Maven Central), but if you want to try out the latest and greatest, R2DBC SPI can be easily built with the maven wrapper. You also need JDK 1.8 and Docker to run integration tests.

 $ ./mvnw clean install

If you want to build with the regular mvn command, you will need Maven v3.5.0 or above.

Also see CONTRIBUTING.adoc if you wish to submit pull requests. Commits require Signed-off-by (git commit -s) to ensure Developer Certificate of Origin.

Staging to Maven Central

To stage a release to Maven Central, you need to create a release tag (release version) that contains the desired state and version numbers.

To do that, run:

$ ci/create-release.sh <github issue> <new-release-version> <next-snapshot-version>

For example, to release 0.9.0.RELEASE against github issue #200, and then continue onto 0.9.1.BUILD-SNAPSHOT, you'd run this:

$ ci/create-release.sh 200 0.9.0.RELEASE 0.9.1.BUILD-SNAPSHOT

This script will bump all the POM files to 0.9.0.RELEASE, apply a tag (v0.9.0.RELEASE), and then bump the version again to 0.9.1.BUILD-SNAPHOT.

From here, you can switch over to the release branch and use that tag.

$ git checkout release-0.x
$ git reset --hard v0.9.0.RELEASE
$ <do any local testing you want>
$ git push --force

This will trigger GitHub to start a Maven staging build (see build-and-deploy-to-maven-central.sh).

NOTE: Everything is staged. Nothing is released. You still have the ability to verify and rollback if something is wrong.

Once you have verified everything on Maven Central, closed, and released, switch back and push the main branch.

$ git checkout main
$ git push
$ git push --tags

License

This project is released under version 2.0 of the Apache License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].