Package com.mjs_svc.possibility.util

Source Code of com.mjs_svc.possibility.util.HibernateUtil

package com.mjs_svc.possibility.util;

import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;

/**
* Mostly snagged from Hibernate documentation
*
* @author Matthew Scott
* @version $Id$
*/
public class HibernateUtil {
    private static final SessionFactory sessionFactory = buildSessionFactory();

    private static SessionFactory buildSessionFactory() {
        try {
            // Create the SessionFactory from hibernate.cfg.xml
            return new Configuration().configure().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;
    }
}
TOP

Related Classes of com.mjs_svc.possibility.util.HibernateUtil

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.