I am not sure exactly how to think about this. Could someone give me an example of how to map this relationship or point me to the correct post.
I have attempted to work this a few different ways but I always get stuck trying to make it bi-directional.
Hibernate version:
Hibernate 3.2.6.ga
Hibernate Annotations 3.3.0.ga
Code:
public class Father {
public Son firstBornSon;
public Son secondBornSon;
public Son getFirstBornSon()
public Son getSecondBornSon()
}
public class Son {
public Father father;
public getFather()
}
Thank you.[/quote]