mirror of https://github.com/dapr/quickstarts.git
* uncommenting pubsub test to try pubsub validate Signed-off-by: Paul Yuknewicz <paulyuk@microsoft.com> * Updated go dependencies go 1.18 dapr/go-sdk 1.5.0 Signed-off-by: Paul Yuknewicz <paulyuk@microsoft.com> * updating .NET/C# Dapr references to 1.8.0 Signed-off-by: Paul Yuknewicz <paulyuk@microsoft.com> * updating Dapr SDK for Java versions to 1.6.0 Signed-off-by: Paul Yuknewicz <paulyuk@microsoft.com> |
||
|---|---|---|
| .. | ||
| checkout | ||
| order-processor | ||
| README.md | ||
| makefile | ||
README.md
Dapr pub/sub
In this quickstart, there is a publisher microservice checkout and a subscriber microservice order-processor to demonstrate how Dapr enables a publish-subscribe pattern. checkout generates messages and publishes to a specific orders topic, and order-processor subscribers listen for messages of topic orders.
Visit this link for more information about Dapr and Pub-Sub.
Note: This example leverages the Dapr client SDK. If you are looking for the example using only HTTP click here.
This quickstart includes one publisher:
- Java client message generator
checkout
And one subscriber:
- Java subscriber
order-processor
Pre-requisites
- Dapr and Dapr Cli.
- Java JDK 11 (or greater):
- Apache Maven version 3.x.
Run Java message subscriber app with Dapr
- Navigate to directory and install dependencies:
cd ./order-processor
mvn clean install
- Run the Java subscriber app with Dapr:
cd ./order-processor
dapr run --app-port 8080 --app-id order-processor --components-path ../../../components -- java -jar target/OrderProcessingService-0.0.1-SNAPSHOT.jar
Run Java message publisher app with Dapr
- Navigate to the directory and install dependencies:
cd ./checkout
mvn clean install
- Run the Java publisher app with Dapr:
cd ./checkout
dapr run --app-id checkout --components-path ../../../components -- java -jar target/CheckoutService-0.0.1-SNAPSHOT.jar
dapr stop --app-id checkout
dapr stop --app-id order-processor