-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: parent child one to many association not inserting the child
PostPosted: Mon Jul 08, 2013 4:05 am 
Newbie

Joined: Thu May 29, 2008 3:14 am
Posts: 4
I have parent child one to many bi-directional association as defined below and the parent_id is not populated automatically within the batch insert after the parent. it complains of null parent_id in child insert. any one can offer solution ? am stuck for last one week without a solution.

Code:
Parent {

OneToMany(cascade=CascadeType.ALL)
@JoinColumn(parent_id)
Set<Child> values;

}

Child {

@Embeddable
ChildPK { parentId, paramId }

@ManyToOne
@JoinColumn ("parentId")
Parent parent;

}

Service {

main() {
        Parent parent = new Parent();
        Child child = new Child();
         parent.add(child); { which actually does child.setParent(this); }
         em.save(parent); // is throwing exception when the transaction is commited;
}

}


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.