-->
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: LazyInitializationException with OpenSessionInView andStruts
PostPosted: Thu Aug 24, 2006 7:13 am 
Newbie

Joined: Thu Aug 24, 2006 6:49 am
Posts: 2
Im trying to get a lazy collection and a lazy exception is throwed. I use the OpenSessionInView pattern, implemented by a filter. This is the filter:



Code:
public class HibernateFilter implements Filter{

   public void init(FilterConfig arg0) throws ServletException {
      sf=HibernateUtil.getSessionFactory();
   }


   public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException,ServletException {
      Session session=null;
      try {
         session=sf.getCurrentSession();
         session.beginTransaction();
   
         chain.doFilter(request,response);
   
         session.getTransaction().commit();
      } catch (HibernateException e) {
         if(e instanceof StaleObjectStateException){
            //log.error("Se ha producido un error debido a una actualización concurrente de datos. La actualización que intenta hacer el cliente es desestimada.",e);
         }else{
            //log.error("Se ha producido un error al comprometer la transacción.",e);
         }
         try {
            if(session.getTransaction().isActive()){
               session.getTransaction().rollback();
            }
         } catch (Throwable e1) {
            throw new ServletException(e1);
         }
         throw e;
      } catch (Throwable e) {
         try {
            if(session.getTransaction().isActive()){
               session.getTransaction().rollback();
            }
         } catch (Throwable e1) {
            throw new ServletException(e1);
         }
         throw new ServletException(e);
      }
   }
}




In my DAO class, i get the Hibernate Session with code like this:

Code:
...
s=HibernateUtil.getSessionFactory().getCurrentSession();
s.lock(user,LockMode.NONE);
...
user.getRoles();
....





In my hibernate.cfg.xml, i have added two lines:

<property name="hibernate.transaction.factory_class">org.hibernate.transaction.JDBCTransactionFactory</property>
<property name="hibernate.current_session_context_class">thread</property>


I have the autocommit disabled:
<property name="hibernate.connection.autocommit">false</property>



The exception in randomized throwed when i access to a lazy load collection. I get the session in the filter and I commit it after the view is rendered. I dont close the session or commit the transaction in other place.



The exception's trace is:

Code:
org.hibernate.LazyInitializationException: failed to lazily initialize a collection of role: es.elsendero.comismar.to.acceso.PerfilTO.perfilesHijos, no session or session was closed
   at org.hibernate.collection.AbstractPersistentCollection.throwLazyInitializationException(AbstractPersistentCollection.java:358)
   at org.hibernate.collection.AbstractPersistentCollection.throwLazyInitializationExceptionIfNotConnected(AbstractPersistentCollection.java:350)
   at org.hibernate.collection.AbstractPersistentCollection.readSize(AbstractPersistentCollection.java:97)
   at org.hibernate.collection.PersistentSet.size(PersistentSet.java:114)
   at
...





I have seem this links and my code is like them but falls:

http://www.hibernate.org/43.html
http://www.hibernate.org/42.html



Thanks


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.