java自定义动态链接数据库示例

时间:2024-01-27 13:05:29 


package dao;

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

/**
 * @author minxuenetcn
 */
public class HibernateSessionFactory { 

    private final ThreadLocal<Session> threadLocal = new ThreadLocal<Session>(); 
    private Configuration configuration = new Configuration();  
    private org.hibernate.SessionFactory sessionFactory; 

    /**
     * hibernate.cfg.xml
     * @param configFile
     */
    public void setConfiguration(String configFile){
     this.configuration=new Configuration();
     configuration.configure(configFile);

    } 
    /**
     * Returns the ThreadLocal Session instance.
     *  @return Session
     *  @throws HibernateException
     */ 
    public Session getSession() throws HibernateException { 
        Session session = (Session) threadLocal.get(); 
        if (session == null || !session.isOpen()) { 
            if (sessionFactory == null) { 
                rebuildSessionFactory(); 
            } 
            session = (sessionFactory != null) ? sessionFactory.openSession() 
                    : null; 
            threadLocal.set(session); 
        } 
        return session; 
    } 
    /**
     *  Rebuild hibernate session factory
     *
     */ 
    public void rebuildSessionFactory() {   

     try { 
            sessionFactory = this.configuration.buildSessionFactory(); 
        } catch (Exception e) { 
            System.err 
                    .println("%%%% Error Creating SessionFactory %%%%"); 
            e.printStackTrace(); 
        } 
    } 

    /**
     *  Close the single hibernate session instance.
     *
     *  @throws HibernateException
     */ 
    public void closeSession() throws HibernateException { 
        Session session = (Session) threadLocal.get(); 
        threadLocal.set(null); 
        if (session != null) { 
            session.close(); 
        } 
    } 
    /**
     *  return session factory
     *
     */ 
    public org.hibernate.SessionFactory getSessionFactory() { 
        return sessionFactory; 
    } 
    /**
     *  return hibernate configuration
     */ 
    public Configuration getConfiguration() { 
        return configuration; 
    } 
}

标签:自定义,数据库
0
投稿

猜你喜欢

  • mysql自定义函数原理与用法实例分析

    2024-01-28 01:48:20
  • python property的使用技巧分享

    2022-11-18 21:25:51
  • django解决跨域请求的问题详解

    2021-07-21 14:45:45
  • 从浏览器想开去

    2008-07-29 12:52:00
  • Python一阶马尔科夫链生成随机DNA序列实现示例

    2021-06-23 07:42:22
  • python实现kNN算法

    2023-01-24 13:58:06
  • python文件转为exe文件的方法及用法详解

    2022-08-18 00:14:17
  • Python干货实战之八音符酱小游戏全过程详解

    2021-08-20 11:21:27
  • mysql日志系统的简单使用教程

    2024-01-15 21:09:05
  • vue element-ui el-table组件自定义合计(summary-method)的坑

    2024-05-05 09:24:19
  • 详解python分布式进程

    2023-07-01 16:25:16
  • MSSQL存储过程学习笔记一 关于存储过程

    2024-01-17 18:59:43
  • 基于Python的身份证验证识别和数据处理详解

    2021-04-22 04:43:09
  • appium+python adb常用命令分享

    2022-12-27 09:16:24
  • Python的PIL库中getpixel方法的使用

    2022-01-06 09:08:51
  • 一文教你如何快速学会Go的struct数据类型

    2024-02-14 22:58:44
  • python列表去重的二种方法

    2022-06-02 05:21:41
  • Python入门第1/10页

    2023-03-19 19:34:34
  • JavaScript实现隐藏省略文字效果的方法

    2024-03-18 20:35:29
  • python用pip install时安装失败的一系列问题及解决方法

    2021-10-15 23:11:43
  • asp之家 网络编程 m.aspxhome.com