`
jaychang
  • 浏览: 731471 次
  • 性别: Icon_minigender_1
  • 来自: 嘉兴
社区版块
存档分类
最新评论

HibernateUtil,filter中管理session

阅读更多
利用Thread-Specific Storage撰寫一個 HibernateUtil
HibernateSessionUtil.java

import java.io.Serializable;

import net.sf.hibernate.HibernateException;
import net.sf.hibernate.Session;
import net.sf.hibernate.SessionFactory;
import net.sf.hibernate.Transaction;

public class HibernateSessionUtil implements Serializable
{
    public static final ThreadLocal tLocalsess = new ThreadLocal();

    public static final ThreadLocal tLocaltx = new ThreadLocal();

    /*
     * getting the thread-safe session for using
     */
    public static Session currentSession(){
        Session session = (Session) tLocalsess.get();

        //open a new one, if none can be found.
        try{
            if (session == null){
                session = openSession();
                tLocalsess.set(session);
            }
        }catch (HibernateException e){
            throw new InfrastructureException(e);
        }
        return session;
    }

    /*
     * closing the thread-safe session
     */
    public static void closeSession(){

        Session session = (Session) tLocalsess.get();
        tLocalsess.set(null);
        try{
            if (session != null && session.isOpen()){
                session.close();
            }

        }catch (HibernateException e){
            throw new InfrastructureException(e);
        }
    }

    /*
     * begin the transaction
     */
    public static void beginTransaction(){
        Transaction tx = (Transaction) tLocaltx.get();
        try{
            if (tx == null){
                tx = currentSession().beginTransaction();
                tLocaltx.set(tx);
            }
        }catch (HibernateException e){
            throw new InfrastructureException(e);
        }
    }

    /*
     * close the transaction
     */
    public static void commitTransaction(){
        Transaction tx = (Transaction) tLocaltx.get();
        try{
            if (tx != null && !tx.wasCommitted() && !tx.wasRolledBack())
                tx.commit();
            tLocaltx.set(null);
        }catch (HibernateException e){
            throw new InfrastructureException(e);
        }
    }

    /*
     * for rollbacking
     */
    public static void rollbackTransaction(){
        Transaction tx = (Transaction) tLocaltx.get();
        try{
            tLocaltx.set(null);
            if (tx != null && !tx.wasCommitted() && !tx.wasRolledBack()){
                tx.rollback();
            }
        }catch (HibernateException e){
            throw new InfrastructureException(e);
        }
    }

    private static Session openSession() throws HibernateException{
        return getSessionFactory().openSession();
    }

    private static SessionFactory getSessionFactory() throws HibernateException{
        return SingletonSessionFactory.getInstance();
    }
}

 filter中的程式碼如下
HibernateSessionCloser.java

public class HibernateSessionCloser implements Filter{

    protected FilterConfig filterConfig = null;

    public void init(FilterConfig filterConfig)throws ServletException{
	this.filterConfig = filterConfig;
    }
    
    public void destroy(){
        this.filterConfig = null;
    }    

    public void doFilter(ServletRequest request, ServletResponse response,
                         FilterChain chain)
	throws IOException, ServletException {
        try{
            chain.doFilter(request, response);
        }
        finally{
            try{
                HibernateSessionUtil.commitTransaction();
            }catch (InfrastructureException e){
                HibernateSessionUtil.rollbackTransaction();
            }finally{
                HibernateSessionUtil.closeSession();
            }   
        }

    }
}

然後在操作資料庫之前加上

HibernateSessionUtil.beginTransaction();
HibernateSessionUtil.currentSession();//取得Session

分享到:
评论

相关推荐

    HibernateUtil

    总结,HibernateUtil是Hibernate实践中常用的工具类,它通过集中管理SessionFactory和Session,简化了数据库操作,提高了开发效率和系统性能。理解和掌握HibernateUtil的使用,能够让我们在处理复杂的数据库操作时...

    HibernateUtil分装完整版HQL查询

    描述中的重复信息进一步强调了这个主题,意味着我们将探讨如何在实际项目中高效地运用HibernateUtil来处理数据库查询。 **HibernateUtil介绍** HibernateUtil是一个常见的实用工具类,用于简化Hibernate框架的使用...

    Hibernate-nosession

    本文将深入探讨Hibernate-nosession的概念、应用场景以及如何在实际代码中实现。 首先,理解什么是Hibernate Session。Session是Hibernate中的核心接口,它充当了应用程序和数据库之间的桥梁,负责对象的持久化操作...

    hibernate入门实例封装了HibernateUtil

    通过上述代码,我们可以看到HibernateUtil如何方便地管理Session和事务,以及如何实现数据的保存和查询。这只是一个基础的封装,实际项目中可能需要进一步优化,如添加异常处理、连接池管理等,以提高性能和健壮性。...

    day36 11-Hibernate中的事务:当前线程中的session

    “当前线程中的Session”这一概念指的是,为每个线程绑定一个单独的Session实例,这样可以更好地管理事务,避免并发问题。在Web应用中,通常使用Servlet容器如Tomcat,它支持ThreadLocal机制,能够为每个请求创建并...

    Hibernager_Session_Manager_ThreadLocal

    每个线程内的操作在同一个Session中进行,方便控制事务边界。 6. **性能优化**:ThreadLocal提供了一种高效的Session管理方式,避免了频繁的Session创建和关闭,提高了应用性能。 7. **线程安全**:由于每个线程有...

    HibernateUtil 分页 增删改查 封装

    HibernateUtil 分页 增删改查 封装 HibernateUtil 分页 增删改查 封装 HibernateUtil 分页 增删改查 封装

    hibernate和session学习

    在实际应用中,我们通常会将`SessionFactory`和`Session`的管理封装到DAO(Data Access Object)层,以便于业务逻辑层调用。同时,为了优化性能,Hibernate还提供了二级缓存,可以通过配置将频繁访问的数据存储在...

    Hibernate中获取Session的两种方式代码示例

    Hibernate 中获取 Session 的两种方式是:通过 HibernateUtil 工具类和通过 SessionFactory 获取当前 Session。 方式一:通过 HibernateUtil 工具类 HibernateUtil 是一个工具类,用于管理 Session。通过 ...

    Open Session in View模式.PPT

    - 修改`HibernateUtil.java`:可能需要添加一些代码来创建和管理Session的生命周期。 - 添加`HibernateSessionUtilFilter`过滤器:这个过滤器是OSIV的核心,它在请求开始时绑定Session到请求上下文,并在请求结束...

    hibernate 的各种操作

    Session session = HibernateUtil.currentSession(); // 获取当前会话 Transaction tx = null; // 事务 Users po = new Users(); // 实体对象 po = transCommerceInfoVOtoPO(vo, po); // 将 VO 转换为 PO try...

    06_传智播客hibernate教程_完善HibernateUtil类及hql查询入门

    首先,`HibernateUtil` 类是 Hibernate 教程中常见的一种工具类,它的主要作用是提供对 Hibernate 框架的简单封装,以方便进行数据库操作。在实际开发中,我们通常会创建一个静态方法来初始化 SessionFactory,这样...

    HibernateUtil工具类

    HibernateUtil工具类

    课程hibernate的事务和并发.pdf

    实现“session-per-request”模式需要拦截器,通常使用ServletFilter或ThreadLocal来管理Session。ThreadLocal变量可以绑定到处理请求的线程,使得代码能方便地访问Session,而事务上下文环境也可存储在ThreadLocal...

    ssh用户管理系统

    成功的个人管理系统 blic class UserDao { public Serializable save(User u){ SessionFactory factory = HibernateUtil.getSessionFactory(); Session session = factory.openSession(); Serializable id = ...

    hibernate关于session的关闭实例解析

    Session 是 Hibernate 中的一种基本概念,它扮演着关键角色来管理数据库交互。本文将深入了解 Hibernate 中 Session 的关闭实例解析,并提供相关代码示例。 getSession() 和 openSession() 的区别 在 Hibernate 中...

    HibernateUtil.java Hibernate5.2.1

    Hibernate5.2.1 的工具类 创建session 和 sessionFactory

    Hibernate总结——课程管理

    在课程管理场景中,通常存在学生和课程之间的多对多关系。每个学生可以选修多个课程,而每门课程也可以被多个学生选修。在Hibernate中,这种关系可以通过`<many-to-many>`标签来配置。我们需要创建两个实体类:`...

Global site tag (gtag.js) - Google Analytics