-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Description
How to use annotation to read CSV file into a hierarchy of bins use annotation?
import.csv
firstName;lastName;birthDate;married;numberOfKids;favouriteQuote;email;customerNo;loyaltyPoints;mailingAddress;
name
public class PersonBean {
private String firstName;
private String lastName;
private Date birthDate;
private Boolean married;
private Integer numberOfKids;
private String favouriteQuote;
private String email;
// set/get method
}
public class CustomerBean extends PersonBean {
private String customerNo;
private long loyaltyPoints;
private String mailingAddress;
// set/get method
}
Metadata
Metadata
Assignees
Labels
No labels