-->
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.  [ 2 posts ] 
Author Message
 Post subject: Allgemeine Frage zu Sessions
PostPosted: Fri Sep 08, 2006 4:20 am 
Newbie

Joined: Fri Sep 08, 2006 4:05 am
Posts: 5
Hi,

ich habe eine generelle Frage zum Umgang mit Sessions in Hibernate. Ich verwende Hibernate in einer Webanwendung(Struts), wie ich jetzt schon in vielen Artikeln und Büchern gelesen habe wird öfters eine HibernateUtil Klasse verwendet die eine ThreadLocal Variable hält und über die Methode die Session zurückgibt.

public static Session currentSession() throws HibernateException {
org.hibernate.Session s = (org.hibernate.Session) session.get();
// Open a new Session, if this Thread has none yet
if (s == null || !s.isOpen()) {
s = sessionFactory.openSession();
session.set(s);
}

return s;
}


public static void closeSession() throws HibernateException {
....
}

meine Frage wäre nun muss man nach jeder Abfrage die Session wieder schließen?? Zum Beispiel, wenn man was abspeichert oder aus der Datenbank ließt.

public void save(UserData transientInstance) {
Session session = HibernateUtil.currentSession();
Transaction tx = session.beginTransaction();

try {
session.saveOrUpdate(transientInstance);
tx.commit();
log.debug("save successful");
} catch (RuntimeException re) {
log.error("save failed", re);
if (tx != null) {
tx.rollback();
}
} finally {
HibernateUtil.closeSession();
}
}


public List findByExample(UserData instance) {
try {
List results = HibernateUtil.currentSession()
.createCriteria(UserData.class)
.add(Example.create(instance))
.list();
HibernateUtil.closeSession(); // Ist das richtig?
return results;
} catch (RuntimeException re) {
log.error("find by example failed", re);
throw re;
}
}


Gibt es irgendwelche Informationen, wo man nachlesen kann wie man Hibernate in einer Webanwendung einbindet nicht in eine normale Anwendung????

Danke schon einmal für eure Hilfe.

Ferruh


Top
 Profile  
 
 Post subject:
PostPosted: Mon Sep 11, 2006 5:45 am 
Regular
Regular

Joined: Sun Aug 01, 2004 6:49 pm
Posts: 76
Benutze am besten einen Servletfilter, wie hier beschrieben:

http://www.hibernate.org/43.html

Die Session brauchst Du dann nicht mehr zu schließen.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 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.