I'm currently working with a project using Hibernate + JPA. I don't recall exactly what I changed in the project, but everytime I try to instantiate a new EntityManagerFactory, it clears out the hole data from the database.
Here is the code snippet:
public abstract class GenericDAO<T> {
protected Class<T> t;
protected EntityManagerFactory managerFactory;
protected EntityManager manager;
protected Session hibernateSession;
public GenericDAO(Class<T> t) {
this.t = t;
this.managerFactory = Persistence.createEntityManagerFactory("hibernatePersistence");
this.manager = this.managerFactory.createEntityManager();
this.hibernateSession = HibernateUtil.getSessionFactory().openSession();
}
In the line that contains "Persistence.createEntityManagerFactory("hibernatePersistence")", the hole database is cleared out.
I exhausted every idea for solving this issue... I hope you guys can help.
Thanks in advance!