Hibernate version: 3.0.5
Hi,
I'd like some help mapping a particular class and it's relations. The class is supposed to look like this:
Code:
public class Term {
private Set<Term> someTerms;
private Set<Term> someOtherTerms;
private Set<Term> someMoreTerms;
}
The Term class is mapped to the TERM table and the collections should also be mapped to the TERM table. But they should also be split into separate collections. Can this be accomplished? I could not find any information on this.
Regards,
Ronald Wildenberg.