-->
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: Rekursiver Datentyp, wie die hmb.xml definieren ?
PostPosted: Sun Oct 01, 2006 7:19 am 
Newbie

Joined: Sun Oct 01, 2006 7:00 am
Posts: 2
Hallo,

ich habe ein Verständnisproblem.
Ich habe einen rekursiven Datentyp Location, der sich folgendermaßen definiert:

Code:
public class Location{
  private id = 0;
  private name = "";
  // ...
  private Set locations = new HashSet<Location>();

  // constr...
  // get... set...
}



ich habe folgende Location.hbm.xml:
Code:
<hibernate-mapping>
   <class name="de.test.Location" table="ort">
      <id name="id" column="id">
         <generator class="native"/>
      </id>

      <property name="parentid" column="parent"/>
      <property name="name" column="name"/>

      <set name="locations" table="ort" lazy="false" >
         <key column="id" />
         <many-to-many column="parent" class="de.test.Location" />
      </set>
   </class>
</hibernate-mapping>


Ich würde gerne haben, dass hibernate automatisch die Location Objekte initialisiert, jedoch bekomme ich, wenn ich diese hmb.xml nutze den Fehler "Initial SessionFactory creation failed.org.hibernate.MappingException: Foreign key (FK1AEF1A262D042:ort [parent])) must have same number of columns as the referenced primary key (ort [id,parent])".

Das Problem ist, daß die zugrunde liegende Datenstruktur in der Tabelle Ort folgendermaßen aussieht.

Ort
id = primary key
parent = foreign key auf ort
name = name der lokation

Hat jemand eine Idee, wie ich dieses Problem löse ? Oder ist solch eine Konstellation von Hibernate nicht gedacht und sollte ich diese Tabelle splitten in:

Ort
id = ...
name = ...

und die Tabelle
OrtStruktur
id = ...
parent = ...


???

Kann mir jemand weiterhelfen ?


Top
 Profile  
 
 Post subject:
PostPosted: Sun Oct 01, 2006 9:49 am 
Newbie

Joined: Sun Oct 01, 2006 7:00 am
Posts: 2
Hab gerade herausgefunden, wie es geht:

Code:
<hibernate-mapping>
   <class name="de.test.Location" table="ort">
      <id name="id" column="id">
         <generator class="native"/>
      </id>


      <!-- <property name="parentid" column="parent"/> -->
      <property name="name" column="name"/>
      <property name="count" column="count" />

      <many-to-one
            name="parent"
            class="de.test.Location"
            column="parent"
            insert="false"
            update="false"
            lazy="false"
            cascade="none" />
      <set
            name="locations"
            table="ort"
            lazy="false"
            sort="de.test.Location"
            cascade="save-update"
            inverse="true" >
         <key column="parent" />
         <one-to-many class="de.test.Location" />
      </set>
   </class>
</hibernate-mapping>


Gruß
Ralf


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.