blob: f9910e69d10a357a54e0f6c875e8586bc08416bf [file] [log] [blame]
// spring-boot-auto-configure options: START
:page-partial:
:doctitle: Camel Spring Boot Starter for lra
== Spring Boot Auto-Configuration
When using lra with Spring Boot make sure to use the following Maven dependency to have support for auto configuration:
[source,xml]
----
<dependency>
<groupId>org.apache.camel.springboot</groupId>
<artifactId>camel-lra-starter</artifactId>
<version>x.x.x</version>
<!-- use the same version as your Camel core version -->
</dependency>
----
The component supports 5 options, which are listed below.
[width="100%",cols="2,5,^1,2",options="header"]
|===
| Name | Description | Default | Type
| *camel.lra.coordinator-context-path* | The context path of the LRA coordinator service | | String
| *camel.lra.coordinator-url* | The base URL of the LRA coordinator service (e.g. \http://lra-host:8080) | | String
| *camel.lra.enabled* | Global option to enable/disable component auto-configuration, default is true. | true | Boolean
| *camel.lra.local-participant-context-path* | The context path of the local participant callback services | | String
| *camel.lra.local-participant-url* | The local URL where the coordinator should send callbacks to (e.g. \http://my-host-name:8080) | | String
|===
// spring-boot-auto-configure options: END