-->
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: Mapping trois tables- trois classes
PostPosted: Sat Sep 12, 2009 7:54 am 
Newbie

Joined: Mon Jul 27, 2009 7:29 am
Posts: 2
Bonjour,
je veut mapper ces trois tables :
1-document(codeDoc,type,...)
2-paiement(codeP,....)
3-paiementDoc(codeDoc,type,codeP,montant)

paiementDoc :
Code:
<hibernate-mapping>
  <class name="paiementDoc" table="PAIEMENT_DOCUMENT">

   <composite-id>
      <key-property column="codeDoc" name="numDoc"/>
      <key-property column="type" name="typeDoc"/>
      <key-property column="codeP" name="codePaiement"/>
   </composite-id>

<many-to-one cascade="save-update" class="ClassesJava.Document" name="document">
      <column name="codeDoc"/>
      <column name="type" />
   </many-to-one>
    <many-to-one cascade="save-update"  class="ClassesJava.Paiement" name="paiement">
      <column name="codeP"/>
    </many-to-one>
<property name="montantPaye" column="MONTANT_PAYE" />

erreur
Code:
[color=#FF0000]Caused by: org.hibernate.MappingException: Repeated column in mapping for entity: paiementDoc column: codeP (should be mapped with insert="false" update="false")
[/color]

quand je met insert="false" update="false" pas d'exception
mais moi j'ai besoin dans le code du cascade
si non comment faire pour indiquer à hibernate que les trois colonnes sont des clés étrangères


Top
 Profile  
 
 Post subject: Re: Mapping trois tables- trois classes
PostPosted: Wed Sep 30, 2009 11:39 am 
Newbie

Joined: Wed Jul 01, 2009 6:38 am
Posts: 11
A mon avis, PaiementDoc est une classe d'association et devrait plutôt être gérée avec un composite-element (chapitre 8 du document de référence hibernate).

Ensuite la façon de mapper le composite-element dépend du point d'entrée dans le tryptique : document, paiement ou type.

Admettons qu'on entre par le document on aurait le mapping suivant dans le hbm du document :

Code:
<set name="paiementdoc" table="paiementdoc" lazy="true">
         <key column="doc"/>
         <composite-element class="xxx.PaiementDoc">
            <parent name="doc"/>
            <property name="montantPaye"/>
            <many-to-one name="type" class="xxx.Type"/>
            <many-to-one name="paiement" class="xxx.paiement"/>
         </composite-element>
</set>


La lecture d'un document ramène les xxx.PaiementDoc associés, l'ajout/modif/suppression d'un xxx.PaiementDoc se fait à partir du document.

Ne connaissant pas exactement ton besoin, je m'éloigne peut-être carrément de ce que tu veux


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.