Hallo zusammen,
bin noch ein Hibernate-Anfänger, deshalb bitte ich darum, die evtl. nicht ganz so intelligente Frage zu entschuldigen:
Ich habe eine MySql-Datenbank mit Daten drin. Allerdings werden immer wenn Hibernate sich die Session holt (bei HibernateUtil.getSessionFactory().getCurrentSession();) alle Datenbankeinträge aus der Datenbank gelöscht. Hibernate initialisiert sich richtig, was ich an der LOg4J-Warnung sehen kann. Eine Exception wird nicht geschmissen und das Programm terminiert ganz normal.
Im Moment stehe ich irgendwie auf dem Schlauch und finde meinen Fehler nicht. Wahrscheinlich etwas total simples, aber ich komme einfach nicht drauf.
Hier mal die entscheidenden Code-Dateien. Wäre nett, wenn mir jemand helfen könnte.
Danke schonmal.
Hibernate version:
3.2.5
Kontext, indem Hibernate aufgerufen wird:
Code:
Session session = HibernateUtil.getSessionFactory().getCurrentSession();
Session.beginTransaction();
List aliase = session.createQuery("from Alias").list();
System.out.println("Aliase beinhaltet "+aliase.size()+ " Elemente.");
session.getTransaction().commit();
Meine Hibernate.cfg.xml:Code:
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="connection.url">jdbc:mysql://localhost/alias2</property>
<property name="connection.username">root</property>
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="connection.password">meinPasswort</property>
<property name="connection.pool_size">1</property>
<property name="transaction.factory_class">org.hibernate.transaction.JDBCTransactionFactory</property>
<!-- thread is the short name for
org.hibernate.context.ThreadLocalSessionContext
and let Hibernate bind the session automatically to the thread
-->
<!-- Disable the second-level cache -->
<property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
<property name="current_session_context_class">thread</property>
<!-- this will show us all sql statements -->
<property name="hibernate.show_sql">true</property>
<!-- Drop and re-create the database schema on startup -->
<property name="hbm2ddl.auto">create</property>
<property name="configurationClass">
org.hibernate.cfg.AnnotationConfiguration
</property>
<!-- mapping files -->
<mapping class="alias.Alias" />
<mapping class="alias.Datenbank" />
<mapping class="alias.Spalte" />
<mapping class="alias.Tabelle" />
<mapping package="alias" />
</session-factory>
</hibernate-configuration>
Meine Util-Datei:Code:
package util;
import org.hibernate.*;
import org.hibernate.cfg.*;
public class HibernateUtil {
private static final SessionFactory sessionFactory;
static {
try {
// Create the SessionFactory from hibernate.cfg.xml
AnnotationConfiguration cfg = new AnnotationConfiguration();
cfg.addAnnotatedClass(alias.Alias.class);
cfg.addAnnotatedClass(alias.Datenbank.class);
cfg.addAnnotatedClass(alias.Spalte.class);
cfg.addAnnotatedClass(alias.Tabelle.class);
cfg.configure();
sessionFactory = cfg.buildSessionFactory();
} catch (Throwable ex) {
// Make sure you log the exception, as it might be swallowed
System.err.println("Initial SessionFactory creation failed." + ex);
throw new ExceptionInInitializerError(ex);
}
}
public static SessionFactory getSessionFactory() {
return sessionFactory;
}
public static void shutdown()
{
// Close caches and connection pools
getSessionFactory().close();
}
}
Name and version of the database you are using:
MySql 5.0.45