DOCSP-61803: JavaRS Getting Started - #8
Open
tmcneil-mdb wants to merge 3 commits into
Open
Conversation
Add missing installation step
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary | JIRA
Adds the Java Reactive Streams Get Started sample application under
java-rs/hello-world, mirroring the existingpython/hello-worldandjava/hello-world(Java Sync) samples. The app connects to a MongoDB deployment using the connection string in the MONGODB_URI environment variable, seeds a few sample product documents into the get_started.products collection, then queries and prints one of them.Because the reactive streams driver returns a
Publisherfor every operation, the sample uses Project Reactor matching the current reactive streams Get Started docs.Changes
java-rs/hello-world/src/main/java/HelloWorld.java— sample applicationjava-rs/hello-world/pom.xml— Maven buildjava-rs/hello-world/README.md— setup and run instructionsjava-rs/hello-world/.gitignoreVerified end-to-end: mvn compile exec:java prints the expected document.
Open questions:
This sample is written for Maven only (pom.xml, mvn compile exec:java), consistent with the Java Sync sample. However, the current reactive streams Get Started documentation also supports Gradle, so a reader following the Gradle path has no matching sample to clone.
We should to decide how to cover Gradle before this ships.