zoukankan      html  css  js  c++  java
  • HibernateUtil.java

    package com.keer.hibernate;

    import org.hibernate.HibernateException;
    import org.hibernate.Session;
    import org.hibernate.SessionFactory;
    import org.hibernate.Transaction;
    import org.hibernate.cfg.Configuration;

    public class HibernateUtil {
        
        private static final SessionFactory sessionFactory;
        
        static {
            try {
                Configuration cfg = new Configuration().configure();
                sessionFactory = cfg.buildSessionFactory();
            } catch(Throwable e) {
                System.err.println("Initial SessionFactory creation failed" + e );
                throw new ExceptionInInitializerError(e);
            }
        }
        
        public static SessionFactory getSessionFactory() {
            return sessionFactory;
        }
        
        public static Session getSession() {
            return sessionFactory.openSession();
        }
        
        public static void closeSession(Session session) throws HibernateException {
            if(session != null) {
                if(session.isOpen()) {
                    session.close();
                }
            }
        }
        
        public static void rollback( Transaction tran ) {
            try {
                if(tran != null) {
                    tran.rollback();
                } 
            } catch (HibernateException he) {
                System.out.println("Rollback faild." + he);
            }
        }   
    }

  • 相关阅读:
    CISP/CISA 每日一题 七
    CISP/CISA 每日一题 六
    CISP/CISA 每日一题 五
    C++编码优化之减少冗余拷贝或赋值
    CISP/CISA 每日一题 四
    CISP/CISA 每日一题 三
    CISP/CISA 每日一题 二
    CISP/CISA 每日一题
    C#与C++ DLL的交互
    数据同步工具otter(二)
  • 原文地址:https://www.cnblogs.com/henuyuxiang/p/3929661.html
Copyright © 2011-2022 走看看