码迷,mamicode.com
首页 > 编程语言 > 详细

SpringSide

时间:2015-02-25 13:01:10      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

session失效问题:登陆后发现一两分钟后就失效了,操作网站后自动退出重新登陆界面。

解决:修改超时时间

           ehcache-shiro.xml:

<ehcache updateCheck="false" name="shiroCache">

   <defaultCache
            maxElementsInMemory="10000"
            eternal="false"
            timeToIdleSeconds="120"
            timeToLiveSeconds="120"
            overflowToDisk="false"
            diskPersistent="false"
            diskExpiryThreadIntervalSeconds="120"
            />
</ehcache>
修改为:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE xml>
<ehcache updateCheck="false" name="shiroCache">
	<!-- http://ehcache.org/ehcache.xml -->
   <defaultCache
            maxElementsInMemory="10000"
            eternal="false"
            timeToIdleSeconds="3600"
            timeToLiveSeconds="3600"
            overflowToDisk="false"
            diskPersistent="false"
            diskExpiryThreadIntervalSeconds="3600"
            />
</ehcache>


SpringSide

标签:

原文地址:http://blog.csdn.net/up1up2up3/article/details/43935903

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!