Apache Shiro EhCache 初始化异常:另一个未命名的 CacheManager 已存在于同一个 VM 中

Posted

技术标签:

【中文标题】Apache Shiro EhCache 初始化异常:另一个未命名的 CacheManager 已存在于同一个 VM 中【英文标题】:Apache Shiro EhCache initialization exception: Another unnamed CacheManager already exists in the same VM 【发布时间】:2012-06-23 18:37:18 【问题描述】:

我正在尝试将 EhCache 配置为在启用了 Apache Shiro 的 Web 服务中处理授权缓存。目前我收到以下异常:

org.apache.shiro.cache.CacheException: net.sf.ehcache.CacheException: 另一个未命名的 CacheManager 已经存在于同一个虚拟机中。请为配置中的每个 CacheManager 提供唯一名称或执行以下操作之一:

    使用 CacheManager.create() 静态工厂方法之一重用同名的同一个 CacheManager 或在必要时创建一个 在创建具有相同名称的新缓存管理器之前关闭早期的缓存管理器。

我的 shiro.ini 看起来像:

[main]   
...    
cacheManager = org.apache.shiro.cache.ehcache.EhCacheManager 
cacheManager.cacheManagerConfigFile = classpath:ehcache.xml  
securityManager.cacheManager = $cacheManager 

从这个 *** 帖子看来,使用 Spring 的人已经通过强制 CacheManager 成为单例解决了这个问题:Another unnamed CacheManager already exists in the same VM (ehCache 2.5)。

是否有人知道不使用 Spring 初始化的变通方法(我在 dropwizard 框架内工作,不需要引入 Spring)?是否有某种方式从 shiro.ini 强制执行单例配置?

提前谢谢你!

【问题讨论】:

【参考方案1】:

创建一个扩展 EhCacheManager 的自定义类,并在构造函数中设置您的 cacheManager。这 (net.sf.ehcache.CacheManager.create()) 允许您重用已经存在的缓存管理器。

package lekkie.omotayo

public class MyShiroCacheManager extends EhCacheManager


    public CacheManager()
    
        setCacheManager(net.sf.ehcache.CacheManager.create());
    

那么你可以这样做:

cacheManager = lekkie.omotayo.MyShiroCacheManager
cacheManager.cacheManagerConfigFile = classpath:ehcache.xml
securityManager.cacheManager = $cacheManager

【讨论】:

以上是关于Apache Shiro EhCache 初始化异常:另一个未命名的 CacheManager 已存在于同一个 VM 中的主要内容,如果未能解决你的问题,请参考以下文章

Apache shiro - 我怎么知道缓存正在为授权工作?

转Apache shiro集群实现 shiro入门介绍

配置shiro ehcache 出现这个异常,(未解决) java.lang.NoClassDefFoundError: org/terracotta/statistics/StatisticsMan

Shiro集成web环境[Springboot]-基础使用

Shiro整合Springboot缓存之EhCache实现

shiro框架04会话管理+缓存管理+Ehcache使用