On our PRE-PROD environment (Glassfish v2.1), we're encountering two RuntimeExceptions from two separate requests to our session bean:
- "org.hibernate.SessionException: Session is closed!"
org.hibernate.SessionException: Session is closed! at org.hibernate.impl.AbstractSessionImpl.errorIfClosed(AbstractSessionImpl.java:72) at org.hibernate.impl.SessionImpl.list(SessionImpl.java:1138) at org.hibernate.impl.QueryImpl.list(QueryImpl.java:102) at org.hibernate.ejb.QueryImpl.getResultList(QueryImpl.java:67) [wrapped] javax.persistence.PersistenceException: org.hibernate.SessionException: Session is closed! at org.hibernate.ejb.AbstractEntityManagerImpl.throwPersistenceException(AbstractEntityManagerImpl.java:614) at org.hibernate.ejb.QueryImpl.getResultList(QueryImpl.java:76)
- "java.lang.IllegalStateException: EntityManager is closed"
java.lang.IllegalStateException: EntityManager is closed at org.hibernate.ejb.EntityManagerImpl.close(EntityManagerImpl.java:97) at com.sun.enterprise.util.QueryWrapper.clearDelegates(QueryWrapper.java:460) at com.sun.enterprise.util.QueryWrapper.getResultList(QueryWrapper.java:198)
Both of these EntityManagers we're obtained via JNDI lookup (java:comp:/env/TargetSitePersistenceContext) We're using JTA (transaction-type attribute is not defined in persistence.xml). We're using SQL Server 2008 w/ sqljdbc4.jar
In our code we just do the ff:
query = entityManager.createQuery();
query.getResultList();
And that's it. If I'm not mistaken, I believe the app container will handle open/commit/rollback/close, so we shouldn't have any entityManager.close() in our code.
What might have caused those two runtime exceptions?
When does GF actually open/close an EntityManager?
Is there any difference between:
- an EntityManager obtained via JNDI lookup
- via @PersistenceContext Injection? (We've that we don't encounter these issues with them)