-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 
Author Message
 Post subject: getCurrentSession löscht Datenbankeinträge
PostPosted: Fri Feb 08, 2008 7:26 am 
Newbie

Joined: Fri Feb 08, 2008 7:03 am
Posts: 5
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


Top
 Profile  
 
 Post subject:
PostPosted: Sat Feb 09, 2008 7:59 am 
Expert
Expert

Joined: Thu Jul 05, 2007 9:38 am
Posts: 287
<!-- Drop and re-create the database schema on startup -->
Code:
   <property name="hbm2ddl.auto">create</property>


erzeugt das Datenbankschema bei jedem start neu.

Einfach auf false setzen oder ganz entfernen und Hibernate lässt das.

Ist für die Entwicklung eins der geilsten Features seit geschnitten Brot, allerdings etwas ... störend ... wenn es sich in die Produktion einschleicht.

Jens

_________________
Please rate useful posts.


Schauderhaft: Softwaredevelopment, Projectmanagement, Qualitymanagement and all things "schauderhaft"


Top
 Profile  
 
 Post subject:
PostPosted: Mon Feb 11, 2008 9:20 am 
Newbie

Joined: Fri Feb 08, 2008 7:03 am
Posts: 5
Danke. Das war natürlich der Übeltäter. ;-)


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.