ehcache2.5后hibernate多SessionFactory报错的解决

来源:互联网 发布:linux mount u盘 编辑:程序博客网 时间:2024/05/22 06:08

原文:http://blog.sina.com.cn/s/blog_6e0810c701014dmv.html

今天在项目中配置多SessionFactory,抛错

Caused by: net.sf.ehcache.CacheException: Another unnamed CacheManager already exists in the same VM. Please provide unique names for each CacheManager in the config or do one of following:
1. Use one of the CacheManager.create() static factory methods to reuse same CacheManager with same name or create one if necessary
2. Shutdown the earlier cacheManager before creating new one with same name.

经查,ehcache在2.5以后,CacheManager使用了Singleton,这样在创建多个CacheManager时就会产生上述错误。
http://ehcache.org/documentation/get-started/concepts 是官方解释

解决方法是在Hibernate的hibernateProperties配置中,加上
<prop key="hibernate.cache.region.factory_class">
    org.hibernate.cache.SingletonEhCacheRegionFactory
</prop>

0 0
原创粉丝点击