-->
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.  [ 1 post ] 
Author Message
 Post subject: Fehler: Found shared references to a collection
PostPosted: Fri Oct 17, 2008 7:42 pm 
Newbie

Joined: Mon Oct 13, 2008 5:50 pm
Posts: 3
Hallo liebe Gemeinde,

im Laufe meiner Arbeit ist mir ein erneutes Problem aufgefallen. Ich weiss mir keinen Rat. Also folgendes:

Ich habe eine Relation PERSON und FILM. Personen können in einem FILM mitspielen, Regie führen, usw. Abgebildet wird das ganze mit Hilfe von Mengen. Das Mappingfile sieht daher wie folgt aus:

Code:
<class name="svenali.mediaDB.CPerson" table="PERSON">
      <id name="ID" column="P_ID" >
         <generator class="native" />
      </id>
      ...
      <set name="SpielteIn" table="REL_SCHAUSPIELER_FILM" fetch="select" inverse="true">
         <key column="S_ID" />
         <many-to-many column="F_ID" class="svenali.mediaDB.CFilm" />
      </set>

      <set name="FuehrteRegie" table="REL_REGISSEUR_FILM" fetch="select" inverse="true">
         <key column="R_ID" />
         <many-to-many column="F_ID" class="svenali.mediaDB.CFilm" />
      </set>

...


In der Film-Mapping-Datei ist das ganze umgekehrt aufgeführt, also durch ein Schauspielerset, usw. definiert.

Das ganze funktioniert soweit ganz gut. Das Problem ist nur, es kann ja mal passieren, dass ein Schauspieler sowohl schauspielt als auch Regie führt. In dem Fall ist es die gleiche Person Instanz, die in zwei Listen aufgeführt wird. Die Idee war (und das ergibt für mich keinen Widerspruch) dass dann einmal die Beziehung in der REL_SCHAUSPIELER_FILM-Tabelle und zusätzlich in der REL_REGISSEUR_FILM-Tabelle gespeichert wird. Aber Pustekuchen. Die obige Fehlermeldung: Found Shared References erscheint.

Wie kann ich das ändern? Eine solche Beziehung muss doch mappbar sein oder?!?

Liebe Grüße,
Sven


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

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.