Forums Register Login

Deleting OneToMany Entities in EJB3

+Pie Number of slices to send: Send
Hi,

I'm really stuck trying to delete related entities in EJB3. I have a one to many relationship between two tables and I can't figure out how to delete the child entity.

Let's say my primary bean, the parent is using a list collection to hold the child beans



I haven't had any luck doing this:



It doesn't seem to actually remove the relationship, even if I do an em.merge(parent) on it. On the other hand if I try to remove the child directly I get exceptions:



produces:



So which way is the right way to get rid of the child entity and ensure it's deleted from the database? Is there something I need to do to ensure the object is unique in the session?

Thanks much for the help.
Mike
[ June 26, 2006: Message edited by: Mike Litherland ]
+Pie Number of slices to send: Send
What is your cascade setting for your parent table. Does it cascade deletes. I think you would update the parent object after removing the children. Or can you loop through the childs calling the session.delete() and then commit the transaction?

Mark
+Pie Number of slices to send: Send
Thanks for the reply.

I did find out from browsing through the O'reilly EJB3 book (version 5) that I'm essentially doing things the right way. They recommend "always wire both sides" of a relationship. In this context it's saying do both to delete the object:



However, in this case that's when I get this exception. I'm going to ask on the JBoss forums and see if their gurus have any thoughts on what I'm doing wrong.

Thanks again.
+Pie Number of slices to send: Send
Only a guess, not sure what is the correct answer, (just started to learn EJB3. )

How about you make the parent bean detached from the EM, (is there any method in em to do this job? clear() will detach all the managed entities), and then do em.remove(akid)? then if you want to use the parent, em.find(parent.class, xxx)...
[ June 27, 2006: Message edited by: Joe J. Wang ]
+Pie Number of slices to send: Send
I'm having a similar problem.

I do parent.remove(child)
then em.remove(child)


But still get an exception - what is the correct process?
Hey, check out my mega multi devastator cannon. It's wicked. It makes this tiny ad look weak:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com


reply
reply
This thread has been viewed 4704 times.
Similar Threads
entity bean remove
One-to-Many association delete
Cascade effects of EntityManager.remove()
cascade vs inverse
What it takes to be an architect?
More...

All times above are in ranch (not your local) time.
The current ranch time is
Apr 16, 2024 01:41:14.