BeanIOAvailable as of 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
UsageAn example of a mapping file is here. Using Java DSLTo use the BeanIODataFormat you need to configure the data format with the mapping file, as well the name of the stream. 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 The 2nd route is for the reverse operation, to transform a List<Employee> into a stream of CSV data. // setup beanio data format using the mapping file, loaded from the classpath 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"); The CSV data could for example be as below: private static final String FIXED_DATA = "Joe,Smith,Developer,75000,10012009" + LS + "Jane,Doe,Architect,80000,01152008" + LS + "Jon,Anderson,Manager,85000,03182007" + LS; Using XML DSLTo use the BeanIO data format in XML, you need to configure it using the <beanio> XML tag as shown below. The routes is similar to the example above. <camelContext xmlns="http://camel.apache.org/schema/spring"> <!-- setup beanio data format --> <dataFormats> <beanio id="myBeanio" mapping="org/apache/camel/dataformat/beanio/mappings.xml" streamName="employeeFile"/> </dataFormats> <route> <from uri="direct:unmarshal"/> <unmarshal ref="myBeanio"/> <split> <simple>body</simple> <to uri="mock:beanio-unmarshal"/> </split> </route> <route> <from uri="direct:marshal"/> <marshal ref="myBeanio"/> <to uri="mock:beanio-marshal"/> </route> </camelContext> DependenciesTo 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>2.10.0</version> </dependency> |