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

Joined: Mon Aug 25, 2003 9:11 pm
Posts: 4592
Location: Switzerland
http://hibernate.org/42.html
http://hibernate.org/43.html


Top
 Profile  
 
 Post subject:
PostPosted: Fri Sep 08, 2006 5:25 am 
Newbie

Joined: Fri Sep 08, 2006 4:05 am
Posts: 5
christian wrote:
http://hibernate.org/42.html
http://hibernate.org/43.html


Hi,

danke erst mal für den Tip. Auf der Seite http://www.hibernate.org/42.html steht:

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

Unit of Work

..... To begin a unit of work you open a Session. To end a unit of work you close a Session. ....

Also würde das bedeuten. Das man immer einer close braucht sei es beim lesen, schreiben und löschen oder ??


Top
 Profile  
 
 Post subject:
PostPosted: Fri Sep 08, 2006 11:23 am 
Expert
Expert

Joined: Tue Nov 23, 2004 7:00 pm
Posts: 570
Location: mostly Frankfurt Germany
Es gibt recht unterschiedliche Möglichkeiten zu lösen.
Eine gute Möglichkeit ist die Session sofort nach der Unit of Work wegzuwerfen. Wenn das im Normalfall eine Transaction ist, kannst Du festlegen, dass nach jedem commit auch die session geschlossen wird.
-> siehe auch Hibernate Referenz das Kapitel über Hibernate Parameter.

_________________
Best Regards
Sebastian
---
Training for Hibernate and Java Persistence
Tutorials for Hibernate, Spring, EJB, JSF...
eBook: Hibernate 3 - DeveloperGuide
Paper book: Hibernate 3 - Das Praxisbuch
http://www.laliluna.de


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