How to get Hibernate Session ?
Hi,
I have a Spring MVC project where a dataSource is configured in the following files:
- META-INF/spring/applicationContext.xml
- META-INF/spring/database.properties
- META-INF/persistence.xml
The dataSource seems to be set up correctly, since Hibernate creates the tables on Tomcat start-up.
In my previous Hibernate projects (which were not Spring-based) I used to have the famous HibernateUtil Class which I could get a Hibernate Session from, and do my database-related work.
Obviously HibernateUtil is not needed any more with Spring...
But how can I get the Session?
Edit: Or should I go for EntityManager? If yes, how can I get an instance?
Best regards,
Yves