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!

link|improve this question

57% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Look for hibernate.hbm2ddl.auto property somewhere in your project (probably persistence.xml file) and remove it or change its value to validate. See also:

http://docs.jboss.org/hibernate/core/3.3/reference/en/html/session-configuration.html#configuration-optional

link|improve this answer
update, or validate are fine. Just avoid drop-create. (+1) – Bozho Apr 6 '11 at 21:31
Nope, I tried boths suggestions and nothing helped, any other ideas?? – Paulo Victor Apr 7 '11 at 1:25
Maybe you are using in-memory database? H2/HSQLDB? What is your JDBC URL? – Tomasz Nurkiewicz Apr 7 '11 at 6:08
I'm using MySQL... – Paulo Victor Apr 7 '11 at 10:55
jdbc:mysql://127.0.0.1/cafeina the jdbc URL by the way – Paulo Victor Apr 7 '11 at 12:12
show 1 more comment
feedback

Resolved by deleting and creating a fresh new persistence.xml. Don't know why this problme occured, but nevermind, it works now...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.