Hi,
I'm currently changing a project nature from Eclipse WTP to a maven project. While running the code I get a
Code:
org.hibernate.HibernateException: No TransactionManagerLookup specified
error.
The code runs without errors in Eclipse WTP. I don't use JTA because I have no need of it, and Tomcat doesn't support it natively. No matter if I use
Code:
HibernateUtil.getSessionFactory().getCurrentSession().beginTransaction()
or
Code:
HibernateUtil.getSessionFactory().openSession();
both result in the same error. Am I missing a maven dependency? I googled around, but couldn't find an answer