This project contains the service provider interface for R2DBC implentations. This interface is intended to be terse to simplify implementation by database vendors and should not be used directly. It is expected that client libraries would be built upon this interface in order to expose a more humane interface for tools and developers to use.
Both milestone and snapshot artifacts (library, source, and javadoc) can be found in Maven repositories.
<dependency>
<groupId>io.r2dbc</groupId>
<artifactId>r2dbc-spi</artifactId>
<version>1.0.0.M6</version>
</dependency>
Artifacts can bound found at the following repositories.
<repository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
This project is released under version 2.0 of the Apache License.