-->
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 : @ManyToOne d'un champs d'une entité
PostPosted: Fri Aug 21, 2009 6:14 am 
Newbie

Joined: Fri Aug 21, 2009 6:05 am
Posts: 2
Bonjour à tous,

J'aimerais savoir si un mapping est possible. Je m'explique.

BD :

1 entité A est liée à n entité B.
1 entité B est liée à 1 entité A.

A (aid, aname) et B (bid, bcode, #aid)

Mapping :

J'ai réussi à récupérer dans mon entité A la liste des "bcode" directement passer par l'entité. Voici le mapping côté A :
Code:
@CollectionOfElements
@JoinTable(name = "b", joinColumns = @JoinColumn(name = "aid"))
@Column(name = "bcode", nullable = false)
public Set<String> getCodes() {
    return codes;
}


Je récupère bien un set de String et non un set d'entité B.

Maintenant, j'aimerais que du côté B, je sois capable de récupérer le champs aname de l'entité A directement dans B sans passer par l'entité A comme ça :
Code:
public String getAName() ...


Mais je ne trouve aucun moyen de faire ça en ManyToOne :(.

La seule chose que j'arrive à faire dans ce sens est le classique :
Code:
@ManyToOne(fetch = FetchType.LAZY, targetEntity = AImpl.class)
@JoinColumn(name = "aid")
public A getA() ...


Seulement, en ManyToOne, j'ai l'impression qu'il n'y a pas la possibilité de faire ça :(

Merci de votre aide !


Top
 Profile  
 
 Post subject: Re: Mapping : @ManyToOne d'un champs d'une entité
PostPosted: Wed Sep 30, 2009 11:08 am 
Newbie

Joined: Wed Jul 01, 2009 6:38 am
Posts: 11
J'ai pas essayé mais ce truc pourrait te convenir

http://docs.jboss.org/hibernate/stable/ ... ml#d0e1666


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.