blob: 7be8da74f8292f26abbae7917d9d91e2d8c19315 [file] [log] [blame]
// Do not edit directly!
// This file was generated by camel-quarkus-maven-plugin:update-extension-doc-page
[id="extensions-qute"]
= Qute
:page-aliases: extensions/qute.adoc
:linkattrs:
:cq-artifact-id: camel-quarkus-qute
:cq-native-supported: true
:cq-status: Stable
:cq-status-deprecation: Stable
:cq-description: Transform messages using Quarkus Qute templating engine
:cq-deprecated: false
:cq-jvm-since: 1.0.0
:cq-native-since: 1.0.0
ifeval::[{doc-show-badges} == true]
[.badges]
[.badge-key]##JVM since##[.badge-supported]##1.0.0## [.badge-key]##Native since##[.badge-supported]##1.0.0##
endif::[]
Transform messages using Quarkus Qute templating engine
[id="extensions-qute-maven-coordinates"]
== Maven coordinates
https://{link-quarkus-code-generator}/?extension-search=camel-quarkus-qute[Create a new project with this extension on {link-quarkus-code-generator}, window="_blank"]
Or add the coordinates to your existing project:
[source,xml]
----
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-qute</artifactId>
</dependency>
----
ifeval::[{doc-show-user-guide-link} == true]
Check the xref:user-guide/index.adoc[User guide] for more information about writing Camel Quarkus applications.
endif::[]
[id="extensions-qute-usage"]
== Usage
include::partial$component-configure-options.adoc[]
include::partial$component-endpoint-options.adoc[]
For more information about Qute, please refer to the https://quarkus.io/guides/qute[Quarkus Qute] documentation.
[id="extensions-qute-camel-quarkus-limitations"]
== Camel Quarkus limitations
[id="extensions-qute-limitations-allowcontextmapall-option-in-native-mode"]
== allowContextMapAll option in native mode
The `allowContextMapAll` option is not supported in native mode as it requires reflective access to security sensitive camel core classes such as
`CamelContext` & `Exchange`. This is considered a security risk and thus access to the feature is not provided by default.
[id="extensions-qute-additional-camel-quarkus-configuration"]
== Additional Camel Quarkus configuration
By default, all files located in the src/main/resources/templates directory and its subdirectories
are registered as templates. Templates are validated during startup and watched for changes in the
development mode.