Hi everyone,
I've got issues using CSV Bindy and class hierarchy, for example:
@CsvRecord(separator=",")
public class A extends class B{
@DataField(pos = 1)
private String item1;
}
@CsvRecord(separator=",")
public class B{
@DataField(pos =2)
private String item2;
}
In my generated csv file version of class A, there is no "item2" !
Am i missing something here ? Is there a way to do this ?
Best regards,
--
View this message in context:
http://camel.465427.n5.nabble.com/CSV-Bindy-and-parent-class-tp5740284.html
Sent from the Camel - Users mailing list archive at Nabble.com.