apache shiro - 服务器重启时会话丢失了吗?

时间:2013-11-01 15:43:12

标签: spring shiro

我正在使用Apache Shiro Security。 我的设置是ehcache.xml

    <defaultCache
        maxElementsInMemory="10000"
        eternal="false"
        timeToIdleSeconds="120"
        timeToLiveSeconds="120"
        overflowToDisk="false"
        diskPersistent="false"
        diskExpiryThreadIntervalSeconds="120"
        />

<cache name="shiro-activeSessionCache"
       maxElementsInMemory="10000"
       overflowToDisk="true"
       eternal="true"
       timeToLiveSeconds="0"
       timeToIdleSeconds="0"
       diskPersistent="true"
       diskExpiryThreadIntervalSeconds="600"/>

EHCache Session Cache Configuration

我在两个不同的Tomcats上使用这些设置。我重新启动服务器,第一个会话被保存,第二个会话没有。它可能是什么?

0 个答案:

没有答案