-->
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.  [ 5 posts ] 
Author Message
 Post subject: Hibernate in Webapplication
PostPosted: Wed Jun 21, 2006 10:05 am 
Newbie

Joined: Wed Jun 21, 2006 9:48 am
Posts: 12
Location: Germering
Ich fange gerade an mit Hibernate. Einen ersten Test hab ich erfolgreich erstellt. (Anbindung einer Applikation an eine Datenbank und Test mit JUnit)

Ich frage mich nun, wie ich an eine Hibernate-Session im Web-Umfeld komme. Nach dem ich nicht der erste bin, der das machen will, gibt es bestimmt irgend wo einfache Beispiele, wie ich Hibernate mit JSF nutzen kann.

Mark


Top
 Profile  
 
 Post subject:
PostPosted: Thu Jun 29, 2006 7:17 am 
Newbie

Joined: Mon Apr 24, 2006 5:56 am
Posts: 7
hi,

wie kommst du denn im nicht Web-Umfeld zu deiner HSession?


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jul 03, 2006 3:49 am 
Newbie

Joined: Wed Jun 21, 2006 9:48 am
Posts: 12
Location: Germering
Ich habe ein POJO mit JUnit getestet.In der Test Klasse rufe ich auf:

import org.hibernate.HibernateException;
import org.hibernate.Query;
import org.hibernate.SQLQuery;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
...

try {
Configuration configuration = new Configuration();
LOG.debug(configuration);
configuration.configure();
LOG.info("configuration loaded. Configuration is now: " + configuration);
sessionFactory = configuration.buildSessionFactory();
LOG.debug("setUp finished successful.");
} catch (Throwable ex) {
LOG.debug("setUp failed.");
LOG.fatal("Exception in setUp." , ex);
}


in den einzelnen Tests bekomme ich eine Session durch

session = sessionFactory.openSession();

die passende hibernate.cfg.xml steht ist an der Wurzel des CLasspath zu finden.

Allerdings hilft mir diese vorgehensweise nich bei JSF


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jul 04, 2006 10:35 am 
Newbie

Joined: Sun Jun 25, 2006 1:08 pm
Posts: 7
Hi!

Ok... probiers mal nach Schema F: Auf die Session kommst du am besten mit einer Util-Klasse die in etwa folgendermaßen aussieht



Code:
public class HibernateUtil {
   
    private static final SessionFactory sessionFactory;

    static {
        try {
            // Create the SessionFactory
           Configuration configuration = (new
              Configuration()).configure();
           
           sessionFactory = configuration.buildSessionFactory();
        } catch (Throwable ex) {
            // Make sure you log the exception, as it might be swallowed
            ex.printStackTrace();
            throw new ExceptionInInitializerError(ex);
        }
    }

    public static final ThreadLocal session = new ThreadLocal();
   
    /**
     * returns current session using thread-local
     * @return
     * @throws HibernateException
     */
    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 {
        Session s = (Session) session.get();

        if (s != null && s.isOpen()) {
            s.close();
            s = null;
        }       
    }

    /**
     * returns the current session using sessionfactory
     * @return
     */
    public static Session getCurrentSession() {
       return sessionFactory.getCurrentSession();
    }
   
    public static void closeSessionFactory(){
       sessionFactory.close();
    }
   
    public static boolean isOpenSession(){
       return ((org.hibernate.Session)session.get())!=null &&
             ((org.hibernate.Session)session.get()).isOpen() ;
    }

}


Mit HibernateUtil.getCurrentSession() erhältst du dann immer die selbe Session. Und... naja... normalerweise (wenn das mit HibernateUtil in deinen JUnit funktionniert) müsst' es genauso in deinen Backing-Beans funktionieren.

Allerdings würde ich davon abraten, dass du direkt in deien BBeans Hibernate-Code schreibst. Lieber eine Schicht von DAOs dazwischen. Also zB eine Klasse:

public class EmployeeDao{
public List<Project> getProjects(Employee e){
Session sess = HibernateUtil.getCurrentSession();
Transaction tx = sess.beginTransaction();
List<Project> res = e.getProjects();
tx.commit();
HibernateUtil.closeSessionFactory();
return res;
}
public int getNumEmployees(){
// usw usf
}
...
}

Dann brauchst du dich in deinen JSF-Klassen um das Session-Handling nicht mehr bemühen.

Gruß
Harald


Top
 Profile  
 
 Post subject:
PostPosted: Wed Jul 05, 2006 4:37 am 
Newbie

Joined: Thu May 04, 2006 11:59 am
Posts: 1
wollte nur mal anmerken, dass hibernate-session und http-session unabhängig sind ... session factoring sollte dementsprechend ident sein...


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