mirror of https://github.com/dapr/quickstarts.git
* Updating CLI and runtime versions to final 1.14.0 release Signed-off-by: Paul Yuknewicz <paulyuk@microsoft.com> * Updating golang quickstarts with `go get -u github.com/dapr/go-sdk@v1.11.0` Signed-off-by: Paul Yuknewicz <paulyuk@microsoft.com> * Updating Java quickstarts to <version>1.12.0</version> Signed-off-by: Paul Yuknewicz <paulyuk@microsoft.com> * Fixed up go build errors with go mod tidy Signed-off-by: Paul Yuknewicz <paulyuk@microsoft.com> * Dapr runtime to 1.14.1 Signed-off-by: Paul Yuknewicz <paulyuk@microsoft.com> --------- Signed-off-by: Paul Yuknewicz <paulyuk@microsoft.com> |
||
|---|---|---|
| .. | ||
| batch | ||
| README.md | ||
| makefile | ||
README.md
Dapr Bindings (Dapr SDK)
In this quickstart, you'll create a microservice to demonstrate Dapr's bindings API to work with external systems as inputs and outputs. The service listens to input binding events from a system CRON and then outputs the contents of local data to a PostreSql output binding.
Visit this link for more information about Dapr and Bindings.
Note: This example leverages the Dapr SDK. If you are looking for the example using HTTP REST only click here.
This quickstart includes one service:
- Java service
batch
Run and initialize PostgreSQL container
- Open a new terminal, change directories to
../../db, and run the container with Docker Compose:
cd ../../db
docker compose up
Run Java service with Dapr
- Open a new terminal window, change directories to
./batchin the quickstart directory and run:
cd ./batch
mvn clean install
- Run the java service app with Dapr:
dapr run --app-id batch-sdk --app-port 8080 --resources-path ../../../components -- java -jar target/BatchProcessingService-0.0.1-SNAPSHOT.jar