r2dbc-client
Reactive Relational Database Connectivity
File Explorer
Download Latest Version (.zip)- maven-wrapper.jar
- maven-wrapper.properties
- MavenWrapperDownloader.java
- build.sh
- build.yml
- builder.yml
- create-release.sh
- docker-lib.sh
- Dockerfile
- release.sh
- release.yml
- Assert.java
- package-info.java
- ReactiveUtils.java
- Batch.java
- Handle.java
- package-info.java
- Query.java
- R2dbc.java
- ResultBearing.java
- Update.java
- ChangeLogReportGenerator.java
- BatchTest.java
- Example.java
- H2Example.java
- HandleTest.java
- MockResultBearing.java
- MssqlExample.java
- MysqlExample.java
- PostgresqlExample.java
- QueryTest.java
- R2dbcTest.java
- ResultBearingTest.java
- UpdateTest.java
- container-license-acceptance.txt
- logback-test.xml
- .gitignore
- CHANGELOG
- intellij-style.xml
- LICENSE
- mvnw
- mvnw.cmd
- NOTICE
- pom.xml
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/r2dbc/r2dbc-client
Downloads the entire project code from GitHub to your computer.
cd r2dbc-client
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -f ci/Dockerfile -t r2dbc-client .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 r2dbc-client
Runs the built image as an actual container.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. Maven (Java)
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- JDK (Java) Required to build and run Java projects.
- Maven The build tool used for the mvn command.
mvn clean install
Installs dependencies and builds the project using Maven.
A BUILD SUCCESS message means it worked. The output is created under target/.
// repository documentation
Was this content helpful?
(0 ratings)
