This module provides a Spring-based implementation for an embedded Connector Runtime on top of the Connector Runtime Core module.
Note: the recommended way to run the Connector Runtime in a Spring Boot application is to use the Spring Boot starter.
To add the embeddable Connector runtime to your Spring Boot project, add the following dependency to your Spring project:
<dependency>
<groupId>io.camunda.connector</groupId>
<artifactId>connector-runtime-spring</artifactId>
<version>${version.connectors}</version>
</dependency>
Refer to the Releases page for the latest version.
The following Spring @Configuration
classes are available to configure the Connector Runtime:
OutboundConnectorRuntimeConfiguration
- for outbound ConnectorsInboundConnectorRuntimeConfiguration
- for inbound ConnectorsWebhookConnectorRuntimeConfiguration
- for inbound webhook Connectors. This enables the webhook REST endpoint.