PHP笔记网

革命尚未成功,同志仍须努力下载JDK17

作者:Albert.Wen  添加时间:2013-04-10 16:53:24  修改时间:2024-10-31 11:47:50  分类:07.Java基础  编辑
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userDAO': Injection of resource methods failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'mySessionFactory' defined in class path resource [beans.xml]: Invocation of init method failed; nested

exception is org.hibernate.HibernateException: could not instantiateRegionFactory[org.hibernate.cache.impl.bridge.RegionFactoryCacheProviderBridge]

在配置 hibernate 缓存的时候出的错,我就把我这个缓存代码注释掉了。代码如下:

<prop key="hibernate.cache.use_second_level_cache">false</prop><!-- 二级缓存 -->
<prop key="hibernate.cache.provider_class">org.hibernate.cache.internal.NoCacheProvider</prop>

<!--
<prop key="hibernate.cache.provider_class">com.opensymphony.oscache.hibernate.OSCacheProvider</prop>
-->