-->
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.  [ 3 posts ] 
Author Message
 Post subject: Projections et fetch mode
PostPosted: Mon Oct 13, 2008 1:03 pm 
Newbie

Joined: Mon Oct 13, 2008 12:39 pm
Posts: 2
Bonjour a tous,

J'ai une relation entre mes beans comme ceci:
Contact -> Function -> FunctionLabel

J'ai un problème lors de ma recherche à l'aide de criteria. J'utilise des projections pour récupérer uniquement certains attributs du bean Contact et certains attributs de l'association Function.FunctionLabel. Jusque la pas de problèmes sauf que le critere me renvois uniquement les attibuts des contacts possédant au moins une Function or j'ai besoin de récupérer tous les Contacts associés ou non à une fonction. Et j'ai besoin que ces Contacts soient dupliqués si j'ai plusieurs functions associées.

En fait la projection me génère une jointure interne or je voudrais avoir le même résultat mais avec une jointure externe...

Voici toutes les informations ci-dessous :

Hibernate version: 3.2.0

Requete Criteria :
Code:
session.createCriteria(Contact.class);
       criteria.createAlias("functions", "fcts")
          .createAlias("fcts.functionLabel", "flabel")
        criteria.setFetchMode("fcts", FetchMode.JOIN);
        criteria.setFetchMode("flabel", FetchMode.JOIN);
        ProjectionList projections = Projections.projectionList();
        projections.add(Projections.property("id"));
        projections.add(Projections.property("title"));
        projections.add(Projections.property("lastname"));
        projections.add(Projections.property("firstname"));
        projections.add(Projections.property("fcts.id"));
        projections.add(Projections.property("flabel.label"));
        criteria.setProjection(projections);
        List beanList = criteria.list();


The generated SQL (show_sql=true):
select this_.ID as y0_, this_.TITLE as y1_, this_.LASTNAME as y2_, this_.FIRSTNAME as y3_, this_.PHONE_NB as y4_, this_.MOBILE_NB as y5_, this_.FAX_NB as y6_, this_.EMAIL as y7_, this_.UPDATED_BY as y8_, this_.UPDATED_AT as y9_, fcts1_.ID as y10_, flabel2_.LABEL as y11_, com3_.SHORT_NAME as y12_ from CONTACTELUS_USER.CONTACTS this_ inner join CONTACTELUS_USER.FUNCTIONS fcts1_ on this_.ID=fcts1_.CONTACT_ID inner join CONTACTELUS_USER.FUNCTION_LABELS flabel2_ on fcts1_.FUNCTION_LABEL_ID=flabel2_.ID inner join CONTACTELUS_USER.COMMUNITIES com3_ on fcts1_.COMMUNITY_ID=com3_.ID

Mapping documents: Voici mon mapping hibernate
Code:
<hibernate-mapping>
    <class name="com.anwrt.veolia.elus.model.generated.Contact" table="CONTACTS" schema="CONTACTELUS_USER">
        <id name="id" type="integer">
            <column name="ID" />
            <generator class="increment" />
        </id>
        <property name="lastname" type="string">
            <column name="LASTNAME" />
        </property>
        <property name="firstname" type="string">
            <column name="FIRSTNAME" />
        </property>
        <set name="functions" inverse="true" lazy="true" cascade="all">
            <key>
                <column name="CONTACT_ID" precision="38" scale="0" />
            </key>
            <one-to-many class="com.anwrt.veolia.elus.model.generated.Function" />
        </set>
    </class>

    <class name="com.anwrt.veolia.elus.model.generated.Function" table="FUNCTIONS" schema="CONTACTELUS_USER">
        <id name="id" type="integer">
            <column name="ID" />
            <generator class="increment" />
        </id>
        <many-to-one name="functionLabel" class="com.anwrt.veolia.elus.model.generated.FunctionLabel" unique="true" fetch="select">
            <column name="FUNCTION_LABEL_ID" />
        </many-to-one>
        <many-to-one name="community" class="com.anwrt.veolia.elus.model.generated.Community"  unique="true" fetch="select">
            <column name="COMMUNITY_ID" />
        </many-to-one>
        <many-to-one name="contact" class="com.anwrt.veolia.elus.model.generated.Contact"  unique="true" fetch="select">
            <column name="CONTACT_ID" />
        </many-to-one>
        <many-to-one name="address" class="com.anwrt.veolia.elus.model.generated.Address" unique="true" fetch="select">
            <column name="ADDRESS_ID" />
        </many-to-one>
    </class>

    <class name="com.anwrt.veolia.elus.model.generated.FunctionLabel" table="FUNCTION_LABELS" schema="CONTACTELUS_USER">
        <id name="id" type="integer">
            <column name="ID"/>
            <generator class="increment" />
        </id>
        <property name="label" type="string">
            <column name="LABEL" length="150" />
        </property>
        <property name="mailLabel" type="string">
            <column name="MAIL_LABEL" length="150" />
        </property>
        <property name="article" type="string">
            <column name="ARTICLE" length="4" />
        </property>
       
          <set name="functions" inverse="true" lazy="true" cascade="none">
            <key>
                <column name="FUNCTION_LABEL_ID" precision="38" scale="0" />
            </key>
            <one-to-many class="com.anwrt.veolia.elus.model.generated.Function" />
        </set>       
    </class>
</hibernate-mapping>


N'hesitez pas a me questionner pour de plus amples informations.
D'avance merci.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 13, 2008 5:51 pm 
Beginner
Beginner

Joined: Fri May 14, 2004 9:50 am
Posts: 28
Bonjour,

Tu peux générer une jointure externe en précisant le type de jointure lors de la création de l'alias :

createAlias(String associationPath,
String alias,
int joinType)

"The joinType is expected to be one of CriteriaSpecification.INNER_JOIN (the default), CriteriaSpecification.FULL_JOIN, or CriteriaSpecification.LEFT_JOIN. "

_________________
Eric

http://www.viaxoft.com
http://blog.viaxoft.net


Top
 Profile  
 
 Post subject:
PostPosted: Tue Oct 14, 2008 4:07 am 
Newbie

Joined: Mon Oct 13, 2008 12:39 pm
Posts: 2
Ok merci je vais essayer ca.

Et ca marche! Je te remercie pour ton aide, j'ai perdu quasiment une demie journée hier a cause de ca...


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