Hello All,
I am relatively new to Hibernate and hence this question. I have a java class that contains elements of the type java.util.List.
public class Application extends DataObject {
private List investments = null;
public List getInvestments() {
return investments;
}
public void setInvestments(List investments) {
this.investments = investments;
}
}
I am creating the Hibernate mapping file. How do I map an attribute of the type java.util.List.
Any help will be highly appreciated. If you can point me to the right place in the documentation, that will be great too.
Regards,
Kunal
|