I am using EJB 2 and I have a stateless session bean trying to use Hibernate session to connect to database. The problem is, I am getting exception
org.hibernate.HibernateException: Unable to locate current JTA transaction at org.hibernate.context.JTASessionContext.currentSession(JTASessionContext.java:61)

Contents of hibernate.cfg.xml is :

<hibernate-configuration>
<session-factory name="TestHibernateSessionFactory">
    <property name="hibernate.dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>
    <property name="hibernate.transaction.factory_class">org.hibernate.transaction.CMTTransactionFactory</property>
    <property name="hibernate.transaction.manager_lookup_class">org.hibernate.transaction.JBossTransactionManagerLookup</property>
    <property name="hibernate.connection.datasource">java:myJNDI</property>
    <property name="hibernate.transaction.flush_before_completion">true</property>
    <property name="hibernate.transaction.auto_close_session">true</property>
    <mapping resource="Alerts.hbm.xml" />
</session-factory>

My stateless session bean is as follows and please look into the sayHello() method

public class MyTestSessionBean implements SessionBean {
    Configuration configuration  ;
    SessionFactory sessionFactory;  

    /* implementation of other call back methods */

    public void ejbCreate() throws javax.ejb.CreateException,EJBException,RemoteException {
        configuration= new Configuration().configure();
        sessionFactory = configuration.buildSessionFactory();
        sessionFactory.openSession();

    }


    public String sayHello() throws RemoteException{

        Session session = sessionFactory.getCurrentSession();
        Query query= null;
        try{
            query= session.createQuery("from com.app.data.Alerts");
            System.out.println(query.list().size());
        }catch (Exception e) {
            e.printStackTrace();
        }       
        return "hello";     
    }

}

I am new to EJB with hibernate . How to avoid this exception and get the data ?

link|improve this question

36% accept rate
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.