1
如何在Spring中配置休眠模式sessionFactory
,以便使用hibernate.cfg.xml
進行配置(而不是配置設置applicationContext.xml
)?在Spring中配置Hibernate sessionFactory
如何在Spring中配置休眠模式sessionFactory
,以便使用hibernate.cfg.xml
進行配置(而不是配置設置applicationContext.xml
)?在Spring中配置Hibernate sessionFactory
<property name="configLocation" value="classpath:hibernate.cfg.xml" />
我將此屬性添加到applicationContext.xml中的bean定義(sessionFactory)中。它看起來仍然不能從hibernate.cfg.xml中獲取配置。實際上,我在'hibernate.cfg.xml'中爲'NoCacheProvider'指定了'ClassNotFoundException:org.hibernate.cache.CacheProvider'。 – 2012-02-06 13:16:34
我正在使用'org.springframework.orm.hibernate3.LocalSessionFactoryBean'。在類名中更改爲'hibernate4'而不是hibernate3時。它工作(而不是轉移到另一個錯誤)。 – 2012-02-07 14:22:52