BeanIO
Since Camel 2.10
The BeanIO Data Format uses BeanIO to handle flat payloads (such as XML, CSV, delimited, or fixed length formats).
BeanIO is configured using a mappings XML file where you define the mapping from the flat format to Objects (POJOs). This mapping file is mandatory to use.
Options
The BeanIO dataformat supports 8 options, which are listed below.
Name | Default | Java Type | Description |
---|---|---|---|
|
Required The BeanIO mapping file. Is by default loaded from the classpath. You can prefix with file:, http:, or classpath: to denote from where to load the mapping file. |
||
|
Required The name of the stream to use. |
||
|
|
Whether to ignore unidentified records. |
|
|
|
Whether to ignore unexpected records. |
|
|
|
Whether to ignore invalid records. |
|
|
The charset to use. Is by default the JVM platform default charset. |
||
|
To use a custom org.apache.camel.dataformat.beanio.BeanIOErrorHandler as error handler while parsing. Configure the fully qualified class name of the error handler. Notice the options ignoreUnidentifiedRecords, ignoreUnexpectedRecords, and ignoreInvalidRecords may not be in use when you use a custom error handler. |
||
|
|
This options controls whether to unmarshal as a list of objects or as a single object only. The former is the default mode, and the latter is only intended in special use-cases where beanio maps the Camel message to a single POJO bean. |
Usage
An example of a mapping file is here.
Using Java DSL
To use the BeanIODataFormat
you need to configure the data format with
the mapping file, as well the name of the stream.
In Java DSL this can be done as shown below. The streamName is "employeeFile".
DataFormat format = new BeanIODataFormat(
"org/apache/camel/dataformat/beanio/mappings.xml",
"employeeFile");
// a route which uses the bean io data format to format a CSV data
// to java objects
from("direct:unmarshal")
.unmarshal(format)
// and then split the message body so we get a message for each row
.split(body())
.to("mock:beanio-unmarshal");
// convert list of java objects back to flat format
from("direct:marshal")
.marshal(format)
.to("mock:beanio-marshal");
Then we have two routes. The first route is for transforming CSV data
into a List<Employee>
Java objects. Which we then split, so the mock endpoint receives a message for each row.
The 2nd route is for the reverse operation, to transform a List<Employee>
into a stream of CSV data.
The CSV data could for example be as below:
Joe,Smith,Developer,75000,10012009
Jane,Doe,Architect,80000,01152008
Jon,Anderson,Manager,85000,03182007
Using XML DSL
To use the BeanIO data format in XML, you need to configure it using the
<beanio>
XML tag as shown below. The routes are similar to the example above.
<route>
<from uri="direct:unmarshal"/>
<unmarshal>
<beanio mapping="org/apache/camel/dataformat/beanio/mappings.xml" streamName="employeeFile"/>
</unmarshal>
<split>
<simple>${body}</simple>
<to uri="mock:beanio-unmarshal"/>
</split>
</route>
<route>
<from uri="direct:marshal"/>
<marshal>
<beanio mapping="org/apache/camel/dataformat/beanio/mappings.xml" streamName="employeeFile"/>
</marshal>
<to uri="mock:beanio-marshal"/>
</route>
Dependencies
To use BeanIO in your Camel routes you need to add a dependency on camel-beanio which implements this data format.
If you use Maven you can just add the following to your pom.xml, substituting the version number for the latest & greatest release (see the download page for the latest versions).
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-beanio</artifactId>
<version>4.4.0</version>
</dependency>