如果使用ehcache的话 ehcache中配置的缓存名如何和cache插件中的名字对应上?
11 回复
那 那些不在ehcache中配置 就是走默认的
<defaultCache maxElementsInMemory="1000" eternal="false"
timeToIdleSeconds="3600" timeToLiveSeconds="3600" overflowToDisk="false"
diskPersistent="false" diskExpiryThreadIntervalSeconds="120"
statistics="false" />
配置么
@Rekoe 对
我搜了下 这个key shiro-activeSessionCache 怎么没找到用的地方
<cache name="shiro-activeSessionCache"
maxElementsInMemory="1000"
overflowToDisk="true"
eternal="true"
timeToLiveSeconds="0"
timeToIdleSeconds="0"
diskPersistent="true"
diskExpiryThreadIntervalSeconds="600"/>
另外ehcache.js中配置的 这个nutzbook key在ehcache中没找到
args : ["nutzbook"] // 对应shiro.ini中指定的ehcache.xml中定义的name
var ioc = {
cacheManager : {
type : "net.sf.ehcache.CacheManager",
factory : "net.sf.ehcache.CacheManager#getCacheManager",
args : ["nutzbook"] // 对应shiro.ini中指定的ehcache.xml中定义的name
}
};
添加回复
请先登陆