This repository contains sample Workflow applications that demonstrate various capabilities of Temporal using the Java SDK.
- Temporal Server repo: https://github.com/temporalio/temporal
- Temporal Java SDK repo: https://github.com/temporalio/sdk-java
- Java SDK docs: https://docs.temporal.io/docs/java/introduction/
-
Clone this repository:
git clone https://github.com/temporalio/samples-java cd samples-java
-
Build the examples and run tests:
./gradlew build
-
You need a locally running Temporal Server instance to run the samples. We recommend a locally running version of the Temporal Server managed via Docker Compose:
git clone https://github.com/temporalio/docker-compose.git cd docker-compose docker-compose up
Note that for the "listworkflows" example you need to have the Elasticsearch feature enabled on the Temporal Server side. To do this you can run locally with:
git clone https://github.com/temporalio/docker-compose.git
cd docker-compose
docker-compose -f docker-compose-cas-es.yml up
Alternatively you could install the Temporal Server on Kubernetes / Minicube using the Temporal Helm charts. Note that in this case you should use the Temporal CLI (tctl) tool to create a namespace called "default":
tctl --ns default n re
The Temporal Server running in a docker container includes a Web UI, exposed by default on port 8088 of the docker host. If you are running Docker on your host, you can connect to the WebUI running using a browser and opening the following URI:
If you are running Docker on a different host (e.g.: a virtual machine), then modify the URI accordingly by specifying the correct host and the correct port.
http://${DOCKER_HOST}:${WEBUI_PORT}.
If you have deployed the Temporal Server on Kubernetes using Helm Charts, you can use the kubectl command-line tool to forward your local machine ports to the Temporal Web UI:
kubectl port-forward services/temporaltest-web 8088:8088
kubectl port-forward services/temporaltest-frontend-headless 7233:7233
With this you should be able to access the Temporal Web UI with http://localhost:8088.
By default, samples assume relevant Temporal container ports are listening on localhost
, on port 7233
.
If this is not the case, you can tunnel traffic to this port to a different one (even running on a different host), using for example netcat
, socat
, or ssh
.
If, for example, you're running Docker on a virtual machine vm
, you can use ssh
to tunnel the traffic using the following command before running the samples:
ssh -g -L 7233:localhost:7233 -N user@vm
The following section lists all available samples. Click on the sample link to view the README, which contains instructions on how to run them.
Each sample has an associated unit test which demonstrates the use of the Temporal Java SDK testing API. All tests are available under src/test/java
- Hello: This sample includes a number of individual Workflows that can be executed independently. Each one demonstrates something specific.
- HelloActivity: Demonstrates a Workflow Definition that executes a single Activity.
- HelloActivityRetry: Demonstrates how to Retry an Activity Execution.
- HelloActivityExclusiveChoice: Demonstrates how to execute Activities based on dynamic input.
- HelloAsync: Demonstrates how to execute Activities asynchronously and wait for them using Promises.
- HelloParallelActivity: Demonstrates how to execute multiple Activities in parallel, asynchronously, and wait for them using
Promise.allOf
. - HelloAsyncActivityCompletion: Demonstrates how to complete an Activity Execution asynchronously.
- HelloAsyncLambda: Demonstrates how to execute part of a Workflow asynchronously in a separate task (thread).
- HelloCancellationScope: Demonstrates how to explicitly cancel parts of a Workflow Execution.
- HelloDetachedCancellationScope: Demonstrates how to execute cleanup code after a Workflow Execution has been explicitly cancelled.
- HelloChild: Demonstrates how to execute a simple Child Workflow.
- HelloCron: Demonstrates how to execute a Workflow according to a cron schedule.
- HelloDynamic: Demonstrates how to use
DynamicWorkflow
andDynamicActivity
interfaces. - HelloPeriodic: Demonstrates the use of the Continue-As-New feature.
- HelloException: Demonstrates how to handle exception propagation and wrapping.
- HelloLocalActivity: Demonstrates the use of a Local Activity.
- HelloPolymorphicActivity: Demonstrates Activity Definitions that extend a common interface.
- HelloQuery: Demonstrates how to Query the state of a Workflow Execution.
- HelloSignal: Demonstrates how to send and handle a Signal.
- HelloSaga: Demonstrates how to use the SAGA feature.
- HelloSearchAttributes: Demonstrates how to add custom Search Attributes to Workflow Executions.
- HelloSideEffect**: Demonstrates how to implement a Side Effect.
-
File Processing Sample: Demonstrates how to route tasks to specific Workers. This sample has a set of Activities that download a file, processes it, and uploads the result to a destination. Any Worker can execute the first Activity. However, the second and third Activities must be executed on the same host as the first one.
-
Booking SAGA: Demonstrates Temporals take on the Camunda BPMN "trip booking" example.
-
Money Transfer: Demonstrates the use of a dedicated Activity Worker.
-
Money Batch: Demonstrates a situation where a single deposit should be initiated for multiple withdrawals. For example, a seller might want to be paid once per fixed number of transactions. This sample can be easily extended to perform a payment based on more complex criteria, such as at a specific time or an accumulated amount. The sample also demonstrates how to Signal the Workflow when it executes (Signal with start). If the Workflow is already executing, it just receives the Signal. If it is not executing, then the Workflow executes first, and then the Signal is delivered to it. Signal with start is a "lazy" way to execute Workflows when Signaling them.
-
Customer Application Approval DSL: Demonstrates execution of a customer application approval workflow defined in a DSL (like JSON or YAML)
-
Updatable Timer: Demonstrates the use of a helper class which relies on
Workflow.await
to implement a blocking sleep that can be updated at any moment. -
Workflow Interceptor: Demonstrates how to create and register a simple Workflow Interceptor.
-
List Workflows: Demonstrates the use of custom search attributes and ListWorkflowExecutionsRequest with custom queries.
-
Payload Converter: Demonstrates the use of a custom payload converter.
-
Async Child Workflow: Demonstrates how to invoke a child workflow async, that can complete after parent workflow is already completed.
-
Terminate Workflow: Demonstrates how to terminate a workflow using client API.
-
Get Workflow Results Async: Demonstrates how to start and get workflow results in async manner.
- Set up SDK metrics: Demonstrates how to set up and scrape SDK metrics.
It is possible to run the samples from the command line, but if you prefer IntelliJ here are the import steps:
- Navigate to File->New->Project from Existing Sources.
- Select the cloned directory.
- In the Import Project page, select Import project from external model
- Choose Gradle and then click Next
- Click Finish.