-->
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.  [ 2 posts ] 
Author Message
 Post subject: Löschen aus einem Set bei einer OneToMany Beziehung möglich?
PostPosted: Mon May 30, 2011 9:29 am 
Newbie

Joined: Fri Sep 12, 2008 9:21 am
Posts: 3
Hallo,

ich verzweifle gerade am Löschen eines Objektes aus einer OneToMany Beziehung.
Habe folgendes vor, und weiß nicht ob das überhaupt geht.
Habe eine OneToMany Beziehung.
Wenn ich aus dem Set ein Objekt entferne, soll beim speichern des Objektes automatisch der delete
ausgeführt werden.
Je nach Mapping bekomme ich es zwar hin das der Fremdschlüssel auf Null gesetzt wird.
Ich möchte aber das das Objekt gelöscht wird.
Habe jetzt schon so ziemlich alles asuprobiert und komme da nicht weiter.

Hier der nötige Code:

class Publischer.....

//@OneToMany(cascade=CascadeType.ALL, mappedBy="publisher",fetch=FetchType.EAGER, orphanRemoval=true)
@OneToMany(cascade=CascadeType.ALL)
@JoinColumn(name="PUBLISHER_ID")
//@Cascade(value=org.hibernate.annotations.CascadeType.DELETE_ORPHAN)
public Set<Book> getBooks() {
return books;
}

Ich hoffe es kann mir jemand helfen, bzw. meine Frage beantworten!!

Gruß
Klaus Neumann


Top
 Profile  
 
 Post subject: Re: Löschen aus einem Set bei einer OneToMany Beziehung möglich?
PostPosted: Tue May 31, 2011 11:06 am 
Expert
Expert

Joined: Thu Jan 08, 2009 6:16 am
Posts: 661
Location: Germany
Code:
@OneToMany(cascade=CascadeType.ALL)
@JoinColumn(name="PUBLISHER_ID")
@Cascade(value=org.hibernate.annotations.CascadeType.DELETE_ORPHAN)
public Set<Book> getBooks() {
return books;
}

sollte eigentlich funktionieren...

_________________
-----------------
Need advanced help? http://www.viada.eu


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 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.