-->
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: Problem mit ManyToMany Beziehung
PostPosted: Tue Aug 05, 2008 5:05 am 
Newbie

Joined: Tue Aug 05, 2008 4:55 am
Posts: 5
hi,

gibt es hier hibernate-spezialisten, die mir bei meinem problem weiterhelfen könnten??

also ich hab folgendes problem. ich hab eine klasse, welche eine liste enthält. diese liste kann wiederrum nur typen der gleichen klasse aufnehmen, also eine liste mit rekursiven objekten. ich hoff ich konnte das richtig beschreiben?

also die objekte werden korrekt in die datenbank gespeichert. mein problem ist nur diese beziehungstabelle. anstatt, daß er da nix macht, speichert er mir immer wieder bei jedem speichervorgang ein neuesn schlüsselpaar in der verknüpfungstabelle ab. die objekte selbst werden nicht verdoppelt. die konfiguration erfolgt über die annotations über den klassenvariablen. @JoinColumn wurde gesetzt, damit mir des alles nicht abstürzt, weil er natürlich eine Exception bringt, wenn er versucht das gleiche Schlüsselpaar 2mal in die Tabelle zu speichern.

hier is mal meine klasse..auszugsweise:

Code:

@Entity
@Table(name="basis")
@PrimaryKeyJoinColumn(name="id")
public abstract class Basis extends PersistableObject implements Serializable {

@ManyToMany (cascade=CascadeType.ALL)
@JoinColumn(unique=false)
@LazyCollection(value=LazyCollectionOption.FALSE)
@Cascade (value = org.hibernate.annotations.CascadeType.DELETE_ORPHAN)
private void List<Basis> listObjects = new ArrayList<Basis>();


/**
* @return the listObject
*/
public List<Basis> getListObject() {
   return listObject;
}

/**
* @param listObject the listObject to set
*/
public void setListObject(List<Basis> listObject) {
   this.listObject = listObject;
}




so ich lass das jetzt einfach mal stehen. ich hoff es kann mir jemand helfen? wäre echt sehr sehr dringend.

viele liebe grüße von mir

sascha


Top
 Profile  
 
 Post subject: Problem erledigt!
PostPosted: Tue Aug 05, 2008 12:48 pm 
Newbie

Joined: Tue Aug 05, 2008 4:55 am
Posts: 5
Problem hat sich erledigt!!!! Fehler lag woanders.


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.