-->
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: id ist attribut einer anderen Klasse
PostPosted: Mon Dec 07, 2009 9:29 pm 
Newbie

Joined: Sun Dec 06, 2009 3:49 pm
Posts: 3
hi leute ,
ich habe folgendes Problem und zwar muss ich ein hibernate-mapping realisieren.
jetzt steh ich vor folgendem problem und zwar ist meine id ein element aus einer anderen klasse und weis jetzt nicht wie
das einfügen kann. ich hoffe ihr könnt mir da helfen.
bis jetzt hab ich folgendes:

<?xml version="1.0" encoding= "utf-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">

<hibernate-mapping package="de.htwberlin.bv.domain">
<class name="Ausleihe" table="Ausleihe" lazy="false">
<id>
<many-to-one name="exemplar" column="EXEMPLARID" insert="false" update="false" class="de.htwberlin.bv.domain.Exemplar"/>
</id>
<property name="anzahlVerlaengerungen" column="ANZAHL_VERLAENGERUNGEN" type="integer"/>
<property name="ausleihdatum" column="AUSLEIHDATUM" type="date"/>
<property name="erwartetesRueckgabedatum" column="ERWRARTETES_RUECKGABEDATUM" type="date"/>
<property name="gebuehr" column="GEBUEHR" type="big_decimal"/>
<property name="tatsaechlichesRueckgabedatum" column="TATSAECHLICHES_RUECKGABEDATUM" type="date"/>
<many-to-one name="Nutzer" column="AUSWEISNR" insert="false" update="false" class="de.htwberlin.bv.domain.Nutzer"/>
</class>
</hibernate-mapping>


Top
 Profile  
 
 Post subject: Re: id ist attribut einer anderen Klasse
PostPosted: Thu Dec 10, 2009 6:35 am 
Expert
Expert

Joined: Thu Jan 08, 2009 6:16 am
Posts: 661
Location: Germany
Das kann so nicht funktionieren. Wenn die Beziehung many-to-one ist, also viele Einträge dieser Tabelle auf einen Eintrag in der anderen zeigen, kann der Fremdschlüssel nicht PK sein, da er nicht eindeutig ist. Vielleicht meinst du eine One-to-One-Beziehung?

_________________
-----------------
Need advanced help? http://www.viada.eu


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.