-->
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.  [ 8 posts ] 
Author Message
 Post subject: ManyToOne und Delete
PostPosted: Sun Jan 03, 2010 12:47 pm 
Beginner
Beginner

Joined: Mon Dec 29, 2008 3:25 pm
Posts: 20
Hallo,

ich hab 2 Klassen A und B und die haben eine ManyToOne beziehung. Nun will ich wenn das A gelöscht wird, dass auch alle Bs gelöscht werden... Wie bekomme ich das hin?

Code:
public class B{

   @ManyToOne(cascade = {CascadeType.ALL})
   @Override
   public A getA() {
      return a;
   }
   @Override
   public void setA(Aa) {
   this.a= a;
   }
}

Bekomme ich immer folgende Exception
Code:
Caused by: org.hibernate.exception.ConstraintViolationException: Could not execute JDBC batch update
   at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:94)
   at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:66)
   at org.hibernate.jdbc.AbstractBatcher.executeBatch(AbstractBatcher.java:275)
   at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:266)
   at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:172)
   at org.hibernate.event.def.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:321)
   at org.hibernate.event.def.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:50)
   at org.hibernate.impl.SessionImpl.flush(SessionImpl.java:1027)
   at org.hibernate.impl.SessionImpl.managedFlush(SessionImpl.java:365)
   at org.hibernate.transaction.JDBCTransaction.commit(JDBCTransaction.java:137)
   at org.springframework.orm.hibernate3.HibernateTransactionManager.doCommit(HibernateTransactionManager.java:656)
   ... 42 more
Caused by: java.sql.BatchUpdateException: Cannot delete or update a parent row: a foreign key constraint fails (`verwaltung`.`b`, CONSTRAINT `FK951BD2B13A9AD6FA` FOREIGN KEY (`a_id`) REFERENCES `a` (`id`))
   at com.mysql.jdbc.PreparedStatement.executeBatchSerially(PreparedStatement.java:2007)
   at com.mysql.jdbc.PreparedStatement.executeBatch(PreparedStatement.java:1443)
   at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297)
   at org.apache.commons.dbcp.DelegatingStatement.executeBatch(DelegatingStatement.java:297)
   at org.hibernate.jdbc.BatchingBatcher.doExecuteBatch(BatchingBatcher.java:70)
   at org.hibernate.jdbc.AbstractBatcher.executeBatch(AbstractBatcher.java:268)
   ... 50 more



Top
 Profile  
 
 Post subject: Re: ManyToOne und Delete
PostPosted: Sun Jan 10, 2010 9:42 am 
Beginner
Beginner

Joined: Mon Dec 29, 2008 3:25 pm
Posts: 20
Kann mir keiner sagen, wie ich die Beziehung richtig mache?


Top
 Profile  
 
 Post subject: Re: ManyToOne und Delete
PostPosted: Tue Jan 12, 2010 7:03 am 
Senior
Senior

Joined: Tue Oct 28, 2008 10:39 am
Posts: 196
Du musst auf der A-Seite das Cascade definieren. Stichwort Delete-Orphan.


Top
 Profile  
 
 Post subject: Re: ManyToOne und Delete
PostPosted: Tue Jan 12, 2010 8:52 am 
Beginner
Beginner

Joined: Mon Dec 29, 2008 3:25 pm
Posts: 20
CDillinger wrote:
Du musst auf der A-Seite das Cascade definieren. Stichwort Delete-Orphan.

Danke für die Antwort, das habe ich mir auch schon überlegt, ABER dann hab ich ja keine undirektionale Beziehung mehr. Oder geht sowas gar nicht?


Top
 Profile  
 
 Post subject: Re: ManyToOne und Delete
PostPosted: Tue Jan 12, 2010 8:57 am 
Senior
Senior

Joined: Tue Oct 28, 2008 10:39 am
Posts: 196
Ich kann mir nicht vorstellen, dass das geht, denn deine A-Seite kennt ja dann die B-Seite gar nicht. Entsprechend kann auch Hibernate hier wenig automatisch machen. (Ungeprüftes Bauchgefühl...)


Top
 Profile  
 
 Post subject: Re: ManyToOne und Delete
PostPosted: Tue Jan 12, 2010 10:02 am 
Beginner
Beginner

Joined: Mon Dec 29, 2008 3:25 pm
Posts: 20
CDillinger wrote:
Ich kann mir nicht vorstellen, dass das geht, denn deine A-Seite kennt ja dann die B-Seite gar nicht. Entsprechend kann auch Hibernate hier wenig automatisch machen. (Ungeprüftes Bauchgefühl...)

Ja stimmt eigentlich entweder bidirektional...
Oder die Bs selber erst löschen und danach das A löschen...


Top
 Profile  
 
 Post subject: Re: ManyToOne und Delete
PostPosted: Tue Jan 12, 2010 3:31 pm 
Beginner
Beginner

Joined: Mon Dec 29, 2008 3:25 pm
Posts: 20
so neuer versuch klappt auch net....
Code:
  @OneToMany(cascade = CascadeType.ALL, mappedBy = "a")
    @Cascade(value=org.hibernate.annotations.CascadeType.DELETE_ORPHAN)
    public Set<B> getB() {
        return bs;
    }


Code:
  @ManyToOne
    @Override
    public A getA() {
        return a;
    }


Code:
caused by: java.sql.BatchUpdateException: Cannot delete or update a parent row: a foreign key constraint fails


Top
 Profile  
 
 Post subject: Re: ManyToOne und Delete
PostPosted: Wed Feb 10, 2010 10:20 am 
Newbie

Joined: Wed Feb 10, 2010 9:40 am
Posts: 2
SirWayne wrote:
...
Oder die Bs selber erst löschen und danach das A löschen...

Das funktioniert auf jeden Fall.


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