Package kpi.asoiu.utils

Source Code of kpi.asoiu.utils.HibernateUtils

package kpi.asoiu.utils;

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.AnnotationConfiguration;

public class HibernateUtils {
    private static SessionFactory session;



    public static Session getNewSession() {
        if(session == null){
            session = new AnnotationConfiguration().configure().buildSessionFactory();
        }
        return session.openSession();
    }

    public static void close() {
        if (session != null)
            session.close();
        session = null;
    }

}
TOP

Related Classes of kpi.asoiu.utils.HibernateUtils

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.