The issue was the object was being evicted from the Hibernate session.
getSession().evict(object).  I had forgot that the object was being
evicted from the session.

If I do not evict the object from the session then lazy loading worked.
This is more of a Hibernate question but, how can I get unique object
from a hibernate query for each query and have each object be tied to
the session?  

example:
select * from  Product where sku = ?

I want to select the same sku but get two different java objects from
Hibernate so the objects are not the same.

Thanks.




-----Original Message-----
From: Josh Chappelle [mailto:jchappe...@4redi.com] 
Sent: Wednesday, March 31, 2010 7:01 PM
To: users@wicket.apache.org
Subject: RE: Hibernate - OSIV 

What error are you getting?

-----Original Message-----
From: Jeffrey Schneller [mailto:jeffrey.schnel...@envisa.com] 
Sent: Wednesday, March 31, 2010 4:47 PM
To: users@wicket.apache.org
Subject: Hibernate - OSIV 

I think I have the OSIV filter setup correctly but I can't access any
lazy
loaded properties of my objects.  I am not even between requests when
this
is happening.  Does anyone have any ideas?  I can't seem to figure this
out.
I have looked at OSIV in Spring and OSIV in Wicket.  I can't seem to
find
any examples that will help me to determine the problem.  I have
included
all the code and xml configuration that I believe is relevant.  Any help
would be appreciated.  Also a clean example of how to setup Spring +
Hibernate OSIV in the wiki would be a big help.

 

 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to