当前位置: 代码迷 >> 综合 >> Caused by: org.hibernate.HibernateException: could not instantiate RegionFactory [org.hibernate.cach
  详细解决方案

Caused by: org.hibernate.HibernateException: could not instantiate RegionFactory [org.hibernate.cach

热度:47   发布时间:2023-12-23 04:03:35.0

Caused by: org.hibernate.HibernateException: could not instantiate RegionFactory [org.hibernate.cache.impl.bridge.RegionFactoryCacheProviderBridge]     

根本问题驱动加载失败。   间接问题:1.驱动没有,下面有驱动下载的链接。 2.Hibernate文件配置 的参数没写对

      

以下面是加载错误的配置:

<property name="hibernate.cache.provider_class">

 org.hibernate.cache.EhCacheProvider   

</property>


以下面是加载驱动正确的属性配置:

<property name="hibernate.cache.provider_class">

   org.hibernate.cache.HashtableCacheProvider

</property>


温馨提示:

指定二级缓存使用类时,写在 <mapping resource="bean/Customer.hbm.xml"/> 之后 

 <mapping resource="bean/Customer.hbm.xml"/>

 <class-cache usage="read-only" class=""/>


ehcache-2.10.0.jar 驱动下载地址:http://www.ehcache.org/downloads/





  相关解决方案