I guess I'm another newbie guy who fails to understand Hibernate sessions, may be Spring's TransactionTemplate, dunno. Here's my story.

I'm using Hibernate 3.5.5-Final, Spring 3.0.4.RELEASE, trying to live only with annotations (for Hibernate as well as Spring MVC).

My first try was to use @Transactional annotations in combination with properly setup transaction manager. Seemed to work at first, but in long run (about 36hours) I started to receive "LazyInitializationExceptions" over and over again (from places that were running just fine in previous hours!).

So I switched to manual transactions using Spring TransactionTemplate.

Basically I'm having something like this protected stuff in my BaseService

@Autowired
protected HibernateTransactionManager transactionManager;

protected void inTransaction(final Runnable runnable) {
    TransactionTemplate transaction = new TransactionTemplate(transactionManager);
    transaction.execute(new TransactionCallback<Boolean>() {    
        @Override
        public Boolean doInTransaction(TransactionStatus status) {
            try {
                runnable.run();
                return true;
            } catch (Exception e) {
                status.setRollbackOnly();
                log.error("Exception in transaction.", e));
                throw new RuntimeException("Exception in transaction.", e);
            }
        }
    });
}

And using this method from the service's impls worked OK, I did not see LazyInitializationException for 10 days (running Tomcat with this single app 24*7 for 10days, no restarts) ... but than hoops! It has popped again :-/

The LazyInitializationException comes from place under "inTransaction" method and there is no "inTransaction recursion" involved, so I'm pretty sure I should be in the same transaction alas in the same Hibernate session. There is no "data from previous session" involved (as far as my code goes that service layer opens the transaction, gathers all data from Hibernate it needs, process it and returns some result == service does not recall other top-services)

I have not profiled my app (I don't even know how to do that properly in long runs such as 10 days), but my only guess is that I'm leaking memory somewhere and JVM hits heap-limit... Is there some "SoftReferences" involed inside Spring or Hibernat? I don't know...

Another funny thing is that the exception always happen when I try to serialize the result into JSON using Google GSON serializer. I know, it does not use getters ... I have my own patched version that is using getters instead of actual fields (so I'm making sure not to bypass Hibernate proxy mechanisms), do you think it may play some role here?

Last funny thing is that the exception is always happing in the single service method (not anywhere else), which is driving me nuts because this method is as simple-stupid as it could be (no extrem DB operations, just loads data and serialize them to JSON using lazy-fetching), huh???

Does anybody have any suggestions what should I try? Do you have some similar experiences?

Thanks, Jakub

link|improve this question
Wild guess: is it possible that your entities are somehow serialized (HTTP session? cache?) and loose associated collections during deserialization? LIException is very unlikely to pop-up in places only after a while... – Tomasz Nurkiewicz Sep 23 '11 at 8:01
Unfortunately not :( ... my entities always originate from Database itself (possibly Hibernate cache? I'm not using EhCache or something alike). There is always call to Hibernate DAO that gets me my info, I perform some changes and usually serialize it to JSON that is returned by my Web Service. The application is written as state-less thus I can deploy it to multiples HTTP servers and perform load-balancing. Yeah, I was shocked by "LIException" not happening right away (crazy!!!). – Kefik Sep 23 '11 at 8:47
This is crazy. After some time ... LIException pops up ... it is popping up for some time and then, miracously, goes away ... then it happens again :-/ This is driving me nuts! – Kefik Sep 26 '11 at 8:43
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.