Flatpack
JVM since1.1.0 Native since1.1.0
Parse fixed width and delimited files using the FlatPack library.
What’s inside
-
Flatpack component, URI syntax:
flatpack:type:resourceUri
Please refer to the above links for usage and configuration details.
Maven coordinates
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-flatpack</artifactId>
</dependency>
Check the User guide for more information about writing Camel Quarkus applications.
Additional Camel Quarkus configuration
Beyond standard usages described above, a trick is needed when using flatpack mappings 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 flatpack mapping from a classpath resource named mappings/simple.pzmap.xml:
from("direct:start").to("flatpack:delim:mappings/simple.pzmap.xml");
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 = mappings/*.pzmap.xml
More information about selecting resources for inclusion in the native executable could be found at Embedding resource in native executable.