We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 }
The text was updated successfully, but these errors were encountered:
👍
Sorry, something went wrong.
On #72 it is possible.
No branches or pull requests
How to use annotation to read CSV file into a hierarchy of bins use annotation?
import.csv
The text was updated successfully, but these errors were encountered: