Java SDK developer guide
Java Specific Resources
Core Application
Use the essential components of a Temporal Application (Workflows, Activities, and Workers) to build and run a Temporal application.
Temporal Client
Connect to a Temporal Service and start a Workflow Execution.
Testing
Set up the testing suite and test Workflows and Activities.
Failure Detection
Explore how your application can detect failures using timeouts and automatically attempt to mitigate them with retries.
Workflow Message Passing
Send messages to and read the state of Workflow Executions.
Asynchronous Activity Completion
Complete Activities asynchronously.
Versioning
Change Workflow Definitions without causing non-deterministic behavior in current long-running Workflows.
Observability
Configure and use the Temporal Observability APIs.
Debugging
Explore various ways to debug your application.
Schedules
Run Workflows on a schedule and delay the start of a Workflow.
Data Encryption
Use compression, encryption, and other data handling by implementing custom converters and codecs.
Temporal Nexus
Use Temporal Nexus to connect Durable Executions within and across Namespaces using a Nexus Endpoint, a Nexus Service contract, and Nexus Operations.
- Create a Nexus Endpoint to route requests from caller to handler
- Define the Nexus Service contract
- Develop a Nexus Service and Operation handlers
- Develop a caller Workflow that uses a Nexus Service
- Make Nexus calls across Namespaces with a development Server
- Make Nexus calls across Namespaces in Temporal Cloud
Child Workflows
Explore how to spawn a Child Workflow Execution and handle Child Workflow Events.
Continue-As-New
Continue the Workflow Execution with a new Workflow Execution using the same Workflow ID.
Durable Timers
Use Timers to make a Workflow Execution pause or "sleep" for seconds, minutes, days, months, or years.