当前位置: 代码迷 >> java >> 没有openSession,getCurrentSession如何工作?
  详细解决方案

没有openSession,getCurrentSession如何工作?

热度:39   发布时间:2023-07-25 19:41:00.0

这是我的代码:

hibernate.cfg.xml

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

<hibernate-configuration>
    <session-factory>
        <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="connection.url">jdbc:mysql://localhost:3306/sakila</property>
        <property name="connection.username">root</property>
        <property name="connection.password"/>

        <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>

        <property name="current_session_context_class">thread</property>
        <property name="hibernate.show_sql">false</property>

        <mapping class="biz.tugay.saqila.model.Actor" />
    </session-factory>
</hibernate-configuration>

HibernateUtil.java

package biz.tugay.saqila.dao;
/* User: koray@tugay.biz Date: 06/08/15 Time: 18:29 */

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.boot.registry.StandardServiceRegistryBuilder;
import org.hibernate.cfg.Configuration;
import org.hibernate.service.ServiceRegistry;

public class HibernateUtil {

    private static SessionFactory SESSION_FACTORY;

    public static void buildSessionFactory() {
        if (SESSION_FACTORY != null) {
            return;
        }

        Configuration configuration = new Configuration();
        configuration.configure();
        ServiceRegistry serviceRegistry = new StandardServiceRegistryBuilder()
                .applySettings(configuration.getProperties()).build();
        SESSION_FACTORY = configuration.buildSessionFactory(serviceRegistry);

    }

    public static Session getCurrentSession() {
        return SESSION_FACTORY.getCurrentSession();
    }

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

}

和一个示例DAO类:

package biz.tugay.saqila.dao;
/* User: koray@tugay.biz Date: 06/08/15 Time: 18:37 */

import biz.tugay.saqila.model.Actor;
import org.hibernate.Session;

import java.util.List;

@SuppressWarnings("unchecked")
public class ActorDao {

    public List<Actor> getAllActors() {
        Session session = HibernateUtil.getCurrentSession();
        session.beginTransaction();
        List<Actor> actors = session.createQuery("FROM Actor").list();
        session.close();
        return actors;
    }

    public Actor getWithId(int id) {
        Session session = HibernateUtil.getCurrentSession();
        session.beginTransaction();
        Actor actor = (Actor) session.get(Actor.class, id);
        session.close();
        return actor;
    }

}

就像您看到的那样,我没有在任何地方调用openSession ,只是getCurrentSession 但这如何工作?

另外,这是做事的正确方法吗?还是我很幸运能做到这一点?

顺便说一句,我也有这个听众:

package biz.tugay.saqila.servlet;
/* User: koray@tugay.biz Date: 06/08/15 Time: 19:00 */


import biz.tugay.saqila.dao.HibernateUtil;

import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
import javax.servlet.annotation.WebListener;

@WebListener
public class HibernateConfigurator implements ServletContextListener {

    @Override
    public void contextInitialized(ServletContextEvent servletContextEvent) {
        HibernateUtil.buildSessionFactory();
    }

    @Override
    public void contextDestroyed(ServletContextEvent servletContextEvent) {
        System.out.println("Killing Session Factory.");
        HibernateUtil.killSessionFactory();
    }

}

如果将hibernate.current_session_context_class设置为thread,则可以使用SessionFactory.getCurrentSession()在应用程序中的任何位置访问该会话。

如果您不希望会话绑定到上下文,请使用OpenSession。 在某些情况下,您可能需要不同的会话-在这种情况下,除了绑定到上下文的会话外,您可以使用OpenSession而不是currentSession。

SessionFactory.openSession()总是打开一个新的会话,完成数据库操作后,您必须关闭该会话。 SessionFactory.getCurrentSession()返回绑定到上下文的会话,您无需关闭它。

每个应用程序永远不要使用一个会话 -会话不是线程安全的对象,不能被多个线程共享。 每个事务始终使用一个会话

说:

获取当前会话。 确切“当前”的定义由配置为使用的CurrentSessionContext impl控制。

您正在使用ThreadLocalSessionContext。 说:

CurrentSessionContext隐式表示,它通过当前执行线程来界定当前会话的概念。 出于可用性的考虑,决定让此默认隐式实际上在首次请求时生成一个会话,然后在提交/回退与该会话关联的事务之后将其清除。

您不应该关闭以这种方式获得的会话。 相反,您应该提交已经开始的事务。 如文档所述,这将关闭会话。