-->
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 bei der Kaskadierung funktioniert nicht
PostPosted: Thu Feb 10, 2011 8:56 am 
Newbie

Joined: Thu Feb 10, 2011 8:39 am
Posts: 1
Hallo Leute,

habe folgendes Problem mit der Kaskade. Also, ich habe ein Objekt Survey und ein Objekt Page. Die stehen in einer 1:N Beziehung zueinander.
Beispiel: ein Survey hat 5 Pages. Ich möchte nun z.B. drei Pages aus dem Survey Set<Page> löschen und diese Speichern. Beim Speichern sollen nun die drei gelöschten Page Objekte auch automatisch aus der Datenbank gelöscht werden. Leider werden diese Objekte momentan noch nicht automatisch von Hibernate gelöscht. Hat vielleicht jemand eine Idee????

Survey.java
@OneToMany(fetch = FetchType.EAGER, mappedBy = "survey")
@org.hibernate.annotations.Cascade({org.hibernate.annotations.CascadeType.ALL, org.hibernate.annotations.CascadeType.DELETE_ORPHAN})
public Set<Page> getPages() {
return this.pages;
}

Page.java
@ManyToOne(fetch = FetchType.EAGER)
@JoinColumn(name = "Survey_idSurvey", nullable = false)
public Survey getSurvey() {
return this.survey;
}

Löschvorgang:
SessionFactory sessionFactory =
HibernateUtil.getSessionFactory();
session = sessionFactory.openSession();

tx = session.beginTransaction();



session.saveOrUpdate(survey);

tx.commit();
return survey;

....


Top
 Profile  
 
 Post subject: Re: löschen bei der Kaskadierung funktioniert nicht
PostPosted: Sat Feb 12, 2011 6:45 pm 
Newbie

Joined: Sun May 09, 2010 4:48 am
Posts: 11
Page ist Besitzer der Beziehung, daher hat das Speichern der Survey wahrscheinlich keine Auswirkung.
Wenn du deinen Code nicht umgestalten willst versuchs mal so....


Survey.java
@OneToMany(fetch = FetchType.EAGER, mappedBy = "survey")
@org.hibernate.annotations.Cascade({org.hibernate.annotations.CascadeType.ALL, org.hibernate.annotations.CascadeType.DELETE_ORPHAN})
@JoinColumn(name = "Survey_idSurvey", nullable = false)
public Set<Page> getPages() {
return this.pages;
}

Page.java
@ManyToOne(fetch = FetchType.EAGER)
@JoinColumn(name = "Survey_idSurvey", nullable = false, insertable=false, updatable=false)
public Survey getSurvey() {
return this.survey;
}


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.