I would like to know about writing Objects to a CSV using camel bindy,But my class has a user defined datatypes.I see bindy source code, gives exception for the data types other than which are predefined,Any option in bindy for doing like this.If @Link could help here ? Thank you :)
here is my class
@CsvRecord
Public class Myclass{
@DataField(pos = 1)
private RefClass refOne;
@DataField(pos = 2)
private String createdOn;
}
public class RefClass{
private RefClassTwo refTwo;
private String createdBy;
}
Objects linked with
@Link
help to group attributes. But also these linked classes must be Bindy annotated.