Mustache Extension
Since Camel Quarkus 1.0.0-M5
The mustache extension provides the capability to transform an incoming message using a Mustache template.
Maven users will need to add the following dependency to their pom.xml
for this extension.
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-mustache</artifactId>
</dependency>
Usage
The extension provides support for the Camel Mustache Component.
Configuration
Beyond standard usages described above, a trick is needed when using mustache templates from classpath resources in native mode. In such a situation, one needs to explicitly embed the resources in the native executable by specifying the include-patterns
option.
For instance, the route below would load the mustache template from a classpath resource named template/simple.mustache:
from("direct:start").to("mustache://template/simple.mustache");
In order to work in native mode the include-patterns
configuration should be set. For instance, in the application.properties
file as below :
quarkus.camel.native.resources.include-patterns = template/*.mustache
More information about selecting resources for inclusion in the native executable could be found at Embedding resource in native executable.