Hi,
I am looking for a example & your thoughts about this problem.
I have to parse a CSV file and save it to database. 
We already implemented data access logic using Hibernate.

my code snippet is like this


        
        DataFormat bindy = new BindyCsvDataFormat("com.test.beans");
        
        from("file:testcsv")            // load the csv files from the folder
        .unmarshal(bindy)
        .to("bean:ConvertAddressToDB");

But i am really not sure about how to pass bean list to other bean
component.

Thank you.

        



--
View this message in context: 
http://camel.465427.n5.nabble.com/From-CSV-to-Bean-to-HibernatEntityBean-tp5720861.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to