{"id":21939345,"url":"https://github.com/r2dbc/r2dbc-spi","last_synced_at":"2025-05-14T01:09:11.550Z","repository":{"id":41186774,"uuid":"136959682","full_name":"r2dbc/r2dbc-spi","owner":"r2dbc","description":"Service Provider Interface for R2DBC Implementations","archived":false,"fork":false,"pushed_at":"2024-12-02T21:32:20.000Z","size":780,"stargazers_count":425,"open_issues_count":23,"forks_count":57,"subscribers_count":34,"default_branch":"main","last_synced_at":"2025-04-05T15:00:40.832Z","etag":null,"topics":["api","database","java","reactive","reactive-streams"],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/r2dbc.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-06-11T17:34:36.000Z","updated_at":"2025-03-20T20:15:10.000Z","dependencies_parsed_at":"2024-06-21T01:05:53.528Z","dependency_job_id":"633fed88-8079-4b1c-9765-17593166af1b","html_url":"https://github.com/r2dbc/r2dbc-spi","commit_stats":null,"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r2dbc%2Fr2dbc-spi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r2dbc%2Fr2dbc-spi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r2dbc%2Fr2dbc-spi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r2dbc%2Fr2dbc-spi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/r2dbc","download_url":"https://codeload.github.com/r2dbc/r2dbc-spi/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248596506,"owners_count":21130714,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","database","java","reactive","reactive-streams"],"created_at":"2024-11-29T02:19:00.234Z","updated_at":"2025-04-12T16:31:30.307Z","avatar_url":"https://github.com/r2dbc.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Reactive Relational Database Connectivity Service Provider Interface (R2DBC SPI) [![Build Status](https://travis-ci.org/r2dbc/r2dbc-spi.svg?branch=main)](https://travis-ci.org/r2dbc/r2dbc-spi) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.r2dbc/r2dbc-spi/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.r2dbc/r2dbc-spi)\n\nThe Reactive Relational Database Connectivity (R2DBC) project brings reactive programming APIs to relational databases. R2DBC is a [Reactive Foundation](https://reactive.foundation) project.\n\n## In a Nutshell\n\n**Based on the Reactive Streams specification.** R2DBC is founded on the Reactive Streams specification, which provides a fully-reactive non-blocking API.\n\n**Works with relational databases.** In contrast to the blocking nature of JDBC, R2DBC allows you to work with SQL databases using a reactive API.\n\n**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.\n\n**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.\n\n## Code of Conduct\n\nThis project is governed by the [R2DBC Code of Conduct](https://github.com/r2dbc/.github/blob/main/CODE_OF_CONDUCT.adoc). By participating, you are expected to uphold this code of conduct. Please report unacceptable behavior to [info@r2dbc.io](mailto:info@r2dbc.io).\n\n### Maven configuration\n\nArtifacts can be found on [Maven Central](https://search.maven.org/search?q=r2dbc-spi).\n\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003eio.r2dbc\u003c/groupId\u003e\n  \u003cartifactId\u003er2dbc-spi\u003c/artifactId\u003e\n  \u003cversion\u003e${version}\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nIf you'd rather like the latest snapshots of the upcoming major version, use our Maven snapshot repository and declare the appropriate dependency version.\n\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003eio.r2dbc\u003c/groupId\u003e\n  \u003cartifactId\u003er2dbc-spi\u003c/artifactId\u003e\n  \u003cversion\u003e${version}.BUILD-SNAPSHOT\u003c/version\u003e\n\u003c/dependency\u003e\n\n\u003crepository\u003e\n  \u003cid\u003esonatype-nexus-snapshots\u003c/id\u003e\n  \u003cname\u003eSonatype OSS Snapshot Repository\u003c/name\u003e\n  \u003curl\u003ehttps://oss.sonatype.org/content/repositories/snapshots\u003c/url\u003e\n\u003c/repository\u003e\n```\n\n## Getting Help\n\nHaving trouble with R2DBC? We'd love to help!\n\n* The R2DBC website https://r2dbc.io/ gives you an overview over the entire R2DBC eco-system.\n* Check the [spec documentation](https://r2dbc.io/spec/1.0.0.RELEASE/spec/html/), and [Javadoc](https://r2dbc.io/spec/1.0.0.RELEASE/api/).\n* If you are upgrading, check out the [changelog](https://r2dbc.io/spec/1.0.0.RELEASE/CHANGELOG.txt) for \"new and noteworthy\" features.\n* Ask a question - we monitor [stackoverflow.com](https://stackoverflow.com) for questions\n  tagged with [`r2dbc`](https://stackoverflow.com/tags/r2dbc). \n  You can also chat with the community on [Gitter](https://gitter.im/r2dbc/r2dbc).\n* Report bugs with R2DBC SPI at [github.com/r2dbc/r2dbc-spi/issues](https://github.com/r2dbc/r2dbc-spi/issues).\n\n## Reporting Issues\n\nR2DBC uses GitHub as issue tracking system to record bugs and feature requests. \nIf you want to raise an issue, please follow the recommendations below:\n\n* Before you log a bug, please search the [issue tracker](https://github.com/r2dbc/r2dbc-spi/issues) to see if someone has already reported the problem.\n* If the issue doesn't already exist, [create a new issue](https://github.com/r2dbc/r2dbc-spi/issues/new).\n* 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.\n* If you need to paste code, or include a stack trace use Markdown ``` escapes before and after your text.\n* If possible try to create a test-case or project that replicates the issue. \nAttach a link to your code or a compressed file containing your code.\n\n## Building from Source\n\nYou 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\n[maven wrapper](https://github.com/takari/maven-wrapper). You also need JDK 1.8 and Docker to run integration tests.\n\n```bash\n $ ./mvnw clean install\n```\n\nIf you want to build with the regular `mvn` command, you will need [Maven v3.5.0 or above](https://maven.apache.org/run-maven/index.html).\n\n_Also see [CONTRIBUTING.adoc](https://github.com/r2dbc/.github/blob/main/CONTRIBUTING.adoc) if you wish to submit pull requests. Commits require `Signed-off-by` (`git commit -s`) to ensure [Developer Certificate of Origin](https://developercertificate.org/)._\n\n## Staging to Maven Central\n\nTo stage a release to Maven Central, you need to create a release tag (release version) that contains the desired state and version numbers.\n\nTo do that, run:\n\n```bash\n$ ci/create-release.sh \u003cgithub issue\u003e \u003cnew-release-version\u003e \u003cnext-snapshot-version\u003e\n```\n\nFor example, to release `0.9.0.RELEASE` against github issue #200, and then continue onto `0.9.1.BUILD-SNAPSHOT`, you'd run this:\n\n```bash\n$ ci/create-release.sh 200 0.9.0.RELEASE 0.9.1.BUILD-SNAPSHOT\n```\n\nThis 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`.\n\nFrom here, you can switch over to the release branch and use that tag.\n\n```bash\n$ git checkout release-0.x\n$ git reset --hard v0.9.0.RELEASE\n$ \u003cdo any local testing you want\u003e\n$ git push --force\n```\n\nThis will trigger GitHub to start a Maven staging build (see `build-and-deploy-to-maven-central.sh`).\n\nNOTE: Everything is staged. Nothing is released. You still have the ability to verify and rollback if something is wrong.\n\nOnce you have verified everything on Maven Central, closed, and released, switch back and push the `main` branch.\n\n```bash\n$ git checkout main\n$ git push\n$ git push --tags\n```\n\n\n## License\nThis project is released under version 2.0 of the [Apache License][l].\n\n[l]: https://www.apache.org/licenses/LICENSE-2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fr2dbc%2Fr2dbc-spi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fr2dbc%2Fr2dbc-spi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fr2dbc%2Fr2dbc-spi/lists"}