Just my two cents (quite new to Camel), but why don't use a Splitter to split
the List into its individual items?
Example:

  from("file:src/data?noop=true")       
     .convertBodyTo(ItemDocuments.class)       
     .split().body()    
     .to("jpa:org.apache.camel.example.etl.ItemEntity"); 





--
View this message in context: 
http://camel.465427.n5.nabble.com/How-to-write-a-type-converter-tp5741592p5741623.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to