-
请教hibernateSessionFactory 二次加载问题10
public class HibernateSessionFactory { /** * Location of hibernate.cfg.xml file. * Location should be on the classpath as Hibernate uses * #resourceAsStream style lookup for its configuration file. * The default classpath location of the hibernate config file is * in the default package. Use #setConfigFile() to update * the location of the configuration file for the current session. */ private static String CONFIG_FILE_LOCATION = "/hibernate.cfg.xml"; private static final ThreadLocal threadLocal = new ThreadLocal(); private static Configuration configuration = new Configuration(); private static org.hibernate.SessionFactory sessionFactory; private static String configFile = CONFIG_FILE_LOCATION; private HibernateSessionFactory() { } /** * Returns the ThreadLocal Session instance. Lazy initialize * the <code>SessionFactory</code> if needed. * * @return Session * @throws HibernateException */ public static 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 static void rebuildSessionFactory() { try { configuration.configure(configFile); sessionFactory = configuration.buildSessionFactory(); } catch (Exception e) { System.err .println("%%%% Error Creating SessionFactory %%%%"); e.printStackTrace(); } } /** * Close the single hibernate session instance. * * @throws HibernateException */ public static void closeSession() throws HibernateException { Session session = (Session) threadLocal.get(); threadLocal.set(null); if (session != null) { session.close(); } } /** * return session factory * */ public static org.hibernate.SessionFactory getSessionFactory() { return sessionFactory; } /** * return session factory * * session factory will be rebuilded in the next call */ public static void setConfigFile(String configFile) { HibernateSessionFactory.configFile = configFile; sessionFactory = null; } /** * return hibernate configuration * */ public static Configuration getConfiguration() { return configuration; } }
以上HibernateSessionFactory代码由MyEclipse自动生成。
tomcat刚刚启动后,在登录界面首次初始化HibernateSessionFactory时连续点击两次登录对HibernateSessionFactory加载两次会报Duplicate class/entity mapping异常。
请教大家这个错误如何解决?万分感谢!
问题补充:public synchronized static void rebuildSessionFactory() { if(sessionFactory != null) return; try { configuration.configure(configFile); sessionFactory = configuration.buildSessionFactory(); } catch (Exception e) { System.err .println("%%%% Error Creating SessionFactory %%%%"); e.printStackTrace(); } }
以上试过了,还是无法解决!
2008年6月18日 11:46
1个答案 按时间排序 按投票排序
-
可以将rebuildSessionFactory方法同步掉,这样返回的sessionFactory就是单例
public synchronized static void rebuildSessionFactory() { if(sessionFactory != null) return; try { configuration.configure(configFile); sessionFactory = configuration.buildSessionFactory(); } catch (Exception e) { System.err .println("%%%% Error Creating SessionFactory %%%%"); e.printStackTrace(); } }
2008年6月18日 12:47
相关推荐
HibernateSessionFactory.java
`SessionFactory`是线程安全的,通常在应用启动时创建一次,然后在整个应用生命周期中复用。它通过读取`hibernate.cfg.xml`或`hibernate.properties`配置文件来初始化,这些文件定义了数据库连接参数、方言、缓存...
本篇文章将深入探讨`HibernateSessionFactory`及其在Hibernate中的作用,以及如何使用它来实现增、删、查、改(CRUD)操作。 `SessionFactory`是Hibernate的核心组件,它是线程安全的,负责管理数据库连接和会话。`...
Session s= HibernateSessionFactory.getSession(); 就是Hibernate的工具java类
标题提到的"新Hibernate SessionFactory().getCurrentSession()猫腻"揭示了一个常见的使用误区或者说是陷阱,即不正确地使用SessionFactory的getCurrentSession()方法。这篇文章可能探讨了这个方法在实际应用中的...
用于获得Session会话及关闭Session会话
本文将详细讲解如何在Spring 3.2.3版本中配置SessionFactory,以便整合Hibernate 4.2.2,实现对数据库操作的高效管理。SessionFactory是Hibernate的核心组件,它负责创建Session对象,而Session则是与数据库交互的...
修改了Hibernate的源码,可动态增加映射文件
hibernate中的SessionFactoryhibernate中的SessionFactoryhibernate中的SessionFactory
5. **缓存加载(Caching)**:Hibernate支持二级缓存,可以将经常访问的数据存储在缓存中,提高查询效率。 ### 四、关联加载优化 - **fetch join**:在HQL或Criteria查询中使用`fetch`关键字,可以将关联对象一起...
本文将深入探讨在JSP(JavaServer Pages)环境中,如何理解和应对Hibernate的延时加载问题。 首先,我们需要了解什么是延时加载。延时加载是指当实体对象的某个关联属性没有被立即加载,而是等到第一次访问该属性时...
在Java的持久化框架Hibernate中,`SessionFactory`是核心组件之一,它扮演着数据库会话的工厂角色。SessionFactory是通过`Configuration`接口配置并初始化的,这个过程涉及到读取ORM映射文件,设置数据库连接参数等...
Session session = HibernateSessionFactory.currentSession(); Transaction t = session.beginTransaction(); session.save(o); t.commit(); HibernateSessionFactory.clossSession(); } ``` 2. 删除数据...
3. **SessionFactory**: 是Hibernate的一个核心接口,它是一个线程安全的对象,负责创建和管理`Session`对象。通常情况下,一个应用只需要一个`SessionFactory`实例。 - 示例:定义`SessionFactory`获取方法: ```...
7. **缓存(Caching)**:Hibernate提供了第一级缓存(Session级别的)和第二级缓存(SessionFactory级别的)。缓存可以提高数据访问速度,减少对数据库的直接访问。 通过这些基本操作,开发者可以轻松地在Java应用...
在这个场景中,"Hibernate加载数据库驱动的Jar"是指在 Hibernate 应用程序中添加 SQL Server 驱动的 JAR 文件,以便正确地连接到SQL Server数据库。 首先,我们来看一下给定的三个JAR文件: 1. **msbase.jar**:这...
如果选择自定义配置文件的位置或名称,则需要通过`HibernateSessionFactory`类中的`CONFIG_FILE_LOCATION`属性来指定实际的配置文件路径。 **配置文件中的主要内容包括:** - **数据库连接信息**:包括数据库的URL...