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

Hibernate session is automatically closed before the Container Managed Transaction is closed! I have this strange issue while using Hibernate + EJB 2.1 in WebSphere 7.

Hibernate settings are:

<property name="hibernate.transaction.factory_class">org.hibernate.transaction.CMTTransactionFactory</property>
<property name="hibernate.transaction.manager_lookup_class">org.hibernate.transaction.WebSphereExtendedJTATransactionLookup</property>
<property name="hibernate.transaction.flush_before_completion">true</property>
<property name="hibernate.transaction.auto_close_session">true</property>

The EJB Bean is configured for CMT:

<session id="Timesheet">
    ...
    <session-type>Stateless</session-type>
    <transaction-type>Container</transaction-type>
</session>

So, I have a Service EJB Bean which invokes a DAO. In the DAO, I fetch a Hibernate class from Database, it is working fine. I am using sessionFactory.getCurrentSession.

But when I try to initialize a lazy property in the Service EJB Bean, I am getting an error like: LazyInitializationException: could not initialize proxy - no Session

Please help! The same code works in WebSphere 6.1, but not in WebSphere 7.

share|improve this question

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

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.