-->
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.  [ 3 posts ] 
Author Message
 Post subject: How to cascade delete ManyToMany
PostPosted: Fri Jan 12, 2007 8:42 am 
Newbie

Joined: Wed Nov 29, 2006 11:38 am
Posts: 5
Hello,

I've got the code bellow with two many to many associations.

Code:
@ManyToMany(cascade = {CascadeType.ALL} , fetch=FetchType.LAZY)
@JoinTable(name = "T1", joinColumns = @JoinColumn(name = "C1"), inverseJoinColumns = @JoinColumn(name = "C2"))
private List<AuthorizationUnit> authorizationUnits;

@ManyToMany(cascade = {CascadeType.ALL} , fetch = FetchType.LAZY)
@JoinTable(name = "T2", joinColumns = @JoinColumn(name = "C3"), inverseJoinColumns = @JoinColumn(name = "C4"))
private List<Attachment> attachments;


For the first association I would like to cascade delete only the association (in the table T1). It is the current behavior.
For the second association I would like to cascade delete the association and the entity (Attachment).

Thanks for your help,
Pierre-Yves


Top
 Profile  
 
 Post subject:
PostPosted: Fri Jan 12, 2007 8:12 pm 
Hibernate Team
Hibernate Team

Joined: Sun Sep 14, 2003 3:54 am
Posts: 7256
Location: Paris, France
you mean a delete orphan semantic for many to many? It does not make sense

_________________
Emmanuel


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jan 16, 2007 4:52 am 
Newbie

Joined: Wed Nov 29, 2006 11:38 am
Posts: 5
You're totaly right.
I should have a oneToMany relationship between my class and the Attachment entity.

Code:
@ManyToMany(cascade = {CascadeType.ALL} , fetch = FetchType.LAZY)
@JoinTable(name = "T2", joinColumns = @JoinColumn(name = "C3"), inverseJoinColumns = @JoinColumn(name = "C4"))
@Cascade(org.hibernate.annotations.CascadeType.DELETE_ORPHAN)


is also working...

Py


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

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.