blob: 3a8c38c30f5ea907d40864046d88cadb77a16a9c [file] [log] [blame]
// Do not edit directly!
// This file was generated by camel-quarkus-maven-plugin:update-extension-doc-page
= Dozer
:page-aliases: extensions/dozer.adoc
:cq-artifact-id: camel-quarkus-dozer
:cq-native-supported: true
:cq-status: Stable
:cq-description: Map between Java beans using the Dozer mapping library.
:cq-deprecated: false
:cq-jvm-since: 1.0.0
:cq-native-since: 1.0.0
[.badges]
[.badge-key]##JVM since##[.badge-supported]##1.0.0## [.badge-key]##Native since##[.badge-supported]##1.0.0##
Map between Java beans using the Dozer mapping library.
== What's inside
* https://camel.apache.org/components/latest/dozer-component.html[Dozer component], URI syntax: `dozer:name`
Please refer to the above link for usage and configuration details.
== Maven coordinates
[source,xml]
----
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-dozer</artifactId>
</dependency>
----
Check the xref:user-guide/index.adoc[User guide] for more information about writing Camel Quarkus applications.
== Additional Camel Quarkus configuration
The Dozer extension can automatically register a `DozerBeanMapperConfiguration` bean with the Camel registry which references your mapping files.
Use the following configuration property to specify the location(s) of your Dozer mapping configuration files.
[source,properties]
----
quarkus.camel.dozer.mapping-files = dozerMappings.xml,file:foo/bar/custom-mappings.xml,http://foo/bar/mapping.xml
----
The Dozer extension provides a type converter which can leverage your mapping configuration(s) to convert and map a message body
from one type to another. For example.
[source,java]
----
from("direct:oldCustomerTypeIn").convertBodyTo(NewCustomerType.class);
----
It is disabled by default but can be enabled with the following configuration property.
[source,properties]
----
quarkus.camel.dozer.type-converter-enabled = true
----
[width="100%",cols="80,5,15",options="header"]
|===
| Configuration property | Type | Default
|icon:lock[title=Fixed at build time] [[quarkus.camel.dozer.mapping-files]]`link:#quarkus.camel.dozer.mapping-files[quarkus.camel.dozer.mapping-files]`
A comma separated list of Dozer XML mapping configuration file URIs.
| `string`
|
|icon:lock[title=Fixed at build time] [[quarkus.camel.dozer.type-converter-enabled]]`link:#quarkus.camel.dozer.type-converter-enabled[quarkus.camel.dozer.type-converter-enabled]`
Sets whether to configure the DozerTypeConverter for the CamelContext
| `boolean`
| `false`
|===
[.configuration-legend]
icon:lock[title=Fixed at build time] Configuration property fixed at build time. All other configuration properties are overridable at runtime.