-->
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: Hibernate Cache Verständnisproblem
PostPosted: Fri Apr 11, 2014 9:53 am 
Newbie

Joined: Fri Feb 14, 2014 2:30 pm
Posts: 2
ich lade ganz gewöhnlich ein Object aus der Datenbank.

Code:
    public Entity getEntity(long id)
    {
        Session session = getSession();
        Transaction t = session.beginTransaction();
        Entity e = (Entity) session.get(Entity.class, id);
        t.commit();
        return e;
    }


und speicher eine Referenz darauf in einer SessionBean.


Nun lade ich aus einer anderen Bean, bspw 'SessionBean2', nochmal getEntity(die_selbe_id);

Wie schon in SessionBean1, erstell ich in SessionBean2 eine Referenz.


So... nun hab ich eigentlich erwartet, dass Hibernate beim zweiten Aufruf selbst erkennt, dass dieses Objekt bereits geladen ist. Und referenz1 und referenz2 auf die selbe Instanz zeigen.


Hab das aber mal getestet und wie es ausschaut hatte ich mich geirrt.
Wenn ich das Object über referenz1 ändere wirkt sich das nicht auf das Objekt der referenz2 aus.
Sprich session.get() erstellt mir jedes mal eine eigene Kopie.


Wie lässt sich das verhindern? (ohne selbst eine HashMap o.ä als Cache anlegen zu müssen. )


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.