-->
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.  [ 4 posts ] 
Author Message
 Post subject: Relation one-to-many et clé composée.
PostPosted: Wed May 04, 2005 5:23 am 
Newbie

Joined: Tue May 03, 2005 9:22 am
Posts: 3
Hibernate version: hibernate2

Xdoclet version : xdoclet-1.2

Bonjour,

J'ai une relation 1..n entre 2 classes : Fiche et Section. (Une fiche pouvant être composée de plusieurs sections, une section n'étant rattachée qu'à une seule Fiche).

J'utilise donc une relation one-to-many pour la décrire.

Voici le code dans ma classe Fiche ou les sections sont typées en Collection :

Code:
/**
* Retourne la liste des sections associées à la Fiche.
*
* @hibernate.set lazy="true" inverse="true"
*
* @hibernate.collection-key column="IdFiche" not-null="true"
* @hibernate.collection-one-to-many class="fr.Section"
* @hibernate.collection-key-column name="IdFiche" not-null="true"
*
* @return la liste de sections associés à la Fiche.
*/
public Collection get_sectionList() {
return _sectionList;


Fichier Fiche.hbm.xml :
Code:
<set
name="_sectionList"
    lazy="true"
    inverse="true"
    cascade="none"
    sort="unsorted">

    <key column="IdFiche"/>

    <one-to-many class="fr.Section" />

</set>


Mon probléme : en base (SQL SERVER) dans la table Section : la clé idFiche peut être nulle alors que j'aimerai l'inverse !

Comment faire (alors que je précise dans le code : not-null="true" : voir plus haut) ? merci !

Autre question : est il possible avec les xdoclet d'avoir une table sans clé primaire unique mais de composer une clé de deux colonnes (dont une colonne clé étrangère) ?


Top
 Profile  
 
 Post subject:
PostPosted: Wed May 04, 2005 9:15 am 
Beginner
Beginner

Joined: Mon May 02, 2005 2:13 pm
Posts: 20
Location: France
Salut,
Il faut que tu renseigne le fichier hbm de la fiche pour créer un relation père/fils du style:

<one-to-many
class="com.smatis.kernel.modele.Utilisateur"
/>

ou bien avec xdoclet:

/**
* @hibernate.many-to-one
* cascade="none"
* not-null="true"
* column="id_de_ton_object"
*
*/
public TonObject getObjet() {
return tonObjet;
}

public void setObjet(TonObject tonObjet) {
this.tonObjet = tonObjet ;
}


Top
 Profile  
 
 Post subject:
PostPosted: Wed May 04, 2005 12:57 pm 
Beginner
Beginner

Joined: Mon May 02, 2005 2:13 pm
Posts: 20
Location: France
Yannis wrote:
Salut,
Il faut que tu renseigne le fichier hbm de la fiche pour créer un relation père/fils du style:

<one-to-many
class="com.projet.kernel.modele.Utilisateur"
/>

ou bien avec xdoclet:

/**
* @hibernate.many-to-one
* cascade="none"
* not-null="true"
* column="id_de_ton_object"
*
*/
public TonObject getObjet() {
return tonObjet;
}

public void setObjet(TonObject tonObjet) {
this.tonObjet = tonObjet ;
}


Top
 Profile  
 
 Post subject:
PostPosted: Mon May 16, 2005 9:12 am 
Newbie

Joined: Tue May 03, 2005 9:22 am
Posts: 3
Pour info : à la place d'un @hibernate.set un @hibernate.bag m'enléve le pb !


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 4 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.