-->
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.  [ 1 post ] 
Author Message
 Post subject: Jointures externes et objet null dans la relation
PostPosted: Fri Feb 10, 2012 6:10 am 
Newbie

Joined: Fri Feb 10, 2012 6:05 am
Posts: 1
Bonjour,

J'ai 3 objets liés : A contenant un attribut de classe B (relation 0,n, mappée en one-to-many), contenant lui-même un attribut de classe C (relation de cardinalité 1).

Je cherche à lire tous les objets A, y compris ceux pour lesquels B est null.

Voici ce qu'on trouve dans la méthode de recherche :

Code:
public List<A> findListeAPourUnProfil(CriteresRechercheA leCritereRechercheA)
    {
        DetachedCriteria criteria = DetachedCriteria.forClass(A.class);



        criteria.createAlias("b", "bb", CriteriaSpecification.LEFT_JOIN);
        criteria.createAlias("bb.c", "c", CriteriaSpecification.LEFT_JOIN);


        criteria.add(Restrictions.eq("bb.c", leCritereRechercheA.getC()));

        List<A> listA = getHibernateTemplate().findByCriteria(criteria);

        return listAAfficher;
    }


Le hic, c'est que la méthode ne me retourne pas les éléments A pour lesquels B est null, et ce malgré la jointure externe. J'ai essayé avec un FULL_JOIN sans plus de succès, et avec des setFetchMode différents également.

Y a t-il un moyen autre que le HQL ou un sous-select pour palier ce problème?

D'avance, merci et bonne journée à tous.

Thomas


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

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.