Kamelet
JVM since1.7.0 Native since1.7.0
Materialize route templates
What’s inside
-
Kamelet component, URI syntax:
kamelet:templateId/routeId
Please refer to the above link for usage and configuration details.
Maven coordinates
Or add the coordinates to your existing project:
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-kamelet</artifactId>
</dependency>
Check the User guide for more information about writing Camel Quarkus applications.
Usage
Preloading Kamelets at build-time
This extension can preload a set of Kamelets at build time. You must include the names of each Kamelet, in the quarkus.camel.kamelet.identifiers
configuration property.
Using the Kamelet Catalog
A set of pre-made Kamelets can be found on the /camel-kamelets/latest[Kamelet Catalog]. To use a Kamelet from the catalog, you need to copy its YAML definition (that you can find in the camel-kamelets repository) to your project.
Alternatively, you can add a camel-kamelets-catalog
dependency to your application.
<dependency>
<groupId>org.apache.camel.kamelets</groupId>
<artifactId>camel-kamelets-catalog</artifactId>
</dependency>
You can select which Kamelets from the catalog you want to use by referencing their name in the quarkus.camel.kamelet.identifiers
property.
Additional Camel Quarkus configuration
Configuration property | Type | Default |
---|---|---|
List of kamelets identifiers to pre-load at build time. <p> Each individual identifier is used to set the related {@link org.apache.camel.model.RouteTemplateDefinition} id. | List of |
Configuration property fixed at build time. All other configuration properties are overridable at runtime.