[JBoss-user] [EJB 3.0] - Re: ManyToOne - Problems managing relationships

2006-04-08 Thread oliverchua
Hi Colin, If Child owns the relationship, should you be doing this: child.setParent(parent) instead of parent.addChild(child)? From what I understand, if the Child is the mapped field(not the owner) the relationship will be ignored during saving to avoid duplicates. View the original post :

[JBoss-user] [EJB 3.0] - Re: ManyToOne - Problems managing relationships

2006-04-07 Thread ejb3workshop
I usually place the annotations on the getter methods. I haven't seen them on the member yet. In the past I also got the Transient... exception when I tried to persist entities which hadn't been attached previously and where I left out a CASCADE path. View the original post :