标签:
在公司运行好好的项目,拿到家里面运行 报了如下错误:
Another CacheManager with same name ‘hibernate‘ already exists in the same VM。
经过Google,http://blog.sina.com.cn/s/blog_6e0810c701014dmv.html
http://stackoverflow.com/questions/18032771/hibernate-second-level-cache-junit
得出的结论是,需要配置 SingletonEhCacheRegionFactory 取代 EhCacheRegionFactory
<prop key="hibernate.cache.region.factory_class">org.hibernate.cache.ehcache.EhCacheRegionFactory</prop>
替换为
<prop key="hibernate.cache.region.factory_class">org.hibernate.cache.ehcache.SingletonEhCacheRegionFactory </prop>
结果确实是好使了,但是问题就出来了,为什么在公司环境用EhCacheRegionFactory,OK,而换个环境必须用SingletonEhCacheRegionFactory 呢?
他们之间的区别是什么?
http://stackoverflow.com/questions/6615790/singletonehcacheregionfactory-vs-ehcacheregionfactory
有对Ehcache精通的大牛,欢迎在评论区做详细的解释。
标签:
原文地址:http://my.oschina.net/GoogleFan/blog/525170