Re: Camel bindy not working in Spring boot

2016-04-13 Thread Charles Moulliard
In order to help you, a test case will be required with the code reproducing the issue. On Wed, Apr 13, 2016 at 5:47 PM, cgsk wrote: > I dont have a test case, but below is the route where I pass a List of Map > of > my model class. > > from(Constants.ROUTE_CONVERT_TO_CSV) >

Re: Camel bindy not working in Spring boot

2016-04-13 Thread cgsk
I dont have a test case, but below is the route where I pass a List of Map of my model class. from(Constants.ROUTE_CONVERT_TO_CSV) .log("Received request for S3 upload") .marshal().bindy(BindyType.Csv, "com.domain") .setHeader

Re: Camel bindy not working in Spring boot

2016-04-13 Thread Charles Moulliard
Hi, Do you have a test case to reproduce the error ? Regards, On Wed, Apr 13, 2016 at 5:18 PM, cgsk wrote: > Could someone help with the below issue? Below is the custom > packageresolver: > > import java.io.IOException; > import java.net.URL; > import java.util.Enumeration; > > import org.apa

Re: Camel bindy not working in Spring boot

2016-04-13 Thread cgsk
Could someone help with the below issue? Below is the custom packageresolver: import java.io.IOException; import java.net.URL; import java.util.Enumeration; import org.apache.camel.impl.DefaultPackageScanClassResolver; import org.springframework.stereotype.Component; @Component public class Sprin