-->
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: association bidirectionnelle + second level cache
PostPosted: Mon Jul 06, 2009 10:08 am 
Newbie

Joined: Tue May 12, 2009 5:54 am
Posts: 9
bonjour, j'ai un petit problème de cache :
deux entités :
entité abonnement
Code:
<?xml version="1.0" encoding="UTF-8"?>
<hibernate-mapping
    xmlns="urn:nhibernate-mapping-2.2"
    default-cascade="none">

    <class
        name="...."
        table="ABONNEMENT"
        dynamic-insert="false"
        dynamic-update="false"
        lazy="true">

        <cache usage="read-write" />
        <id name="Id" type="Int64" unsaved-value="0">
            <column name="ID" sql-type="BIGINT"/>
            <generator class="native">
            </generator>
        </id>

   ........

        <many-to-one name="Commande" class="Dispositif.Entites.Collectivites.BonDeCommande, Dispositif.Core" outer-join="auto" cascade="none" foreign-key="ABONNEMENT_COMMANDE_FKC">
            <column name="COMMANDE_FK" not-null="false" sql-type="VARCHAR(255)"/>
        </many-to-one>

        .......

    </class>

</hibernate-mapping>


entité bon de commande
Code:
<?xml version="1.0" encoding="UTF-8"?>
<hibernate-mapping
    xmlns="urn:nhibernate-mapping-2.2"
    default-cascade="none">

    <class
       name="..."
        table="BON_DE_COMMANDE"
        dynamic-insert="false"
        dynamic-update="false"
        lazy="true">

        <cache usage="read-write" />
        <id name="Numero" type="String" unsaved-value="null">
            <column name="NUMERO" sql-type="VARCHAR(255)"/>
            <generator class="assigned">
            </generator>
        </id>

        <set name="Abonnements" order-by="COMMANDE_FK" lazy="true" outer-join="auto" inverse="true" cascade="delete">
            <cache usage="read-write" />
            <key foreign-key="ABONNEMENT_COMMANDE_FKC">
                <column name="COMMANDE_FK" sql-type="VARCHAR(255)"/>
            </key>
            <one-to-many class="Abonnement"/>
        </set>
....

    </class>
    <!-- NHibernate.hbm.xml.vsl merge-point -->
</hibernate-mapping>


entre abonnement et bon de commade la relation est bidirectionnelle, mon problème est que lorsque je définis bon de commande pour mon entité abonnement. si j'ai activé mon cache hibernate en second niveau, si je consulte mon entité bon de commande, je ne vois pas mon abonnement car hibernate a gardé mon cache d'avant :(.
Il doit me manquer quelque chose, est ce que quelqu'un aurait une idée voire la solution à mon problème sans doute l'ajout d'un attribut ;).
Par avance grand merci


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.