Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)
share|improve this question

2 Answers

All things being equal, a @PersistenceContext injection and a JNDI lookup should return the same EntityManager. So it might be a bug of GlassFish and you might want to reach for them. But make sure to give all the context like type of session bean used for injection, transaction or not etc etc.

share|improve this answer

Mark your bean with annotation @TransactionAttribute

@Stateless
@TransactionAttribute(TransactionAttributeType.MANDATORY)
public class Repo implements IRepo
{  

container managed transaction is regulated by this parameter

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.