shiro-session-ehcache配置

首先准备好jar包

shiro的主要四个:

ehcache:

shiro.xml 配置

首先securityManager配置

sessionManager配置:

<bean id="sessionManager" class="org.apache.shiro.web.session.mgt.DefaultWebSessionManager">
    <property name="globalSessionTimeout" value="1800000"/><!-- 单位MS-->
    <property name="deleteInvalidSessions" value="true"/>
    <property name="sessionValidationSchedulerEnabled" value="true"/>
    <property name="sessionValidationScheduler" ref="sessionValidationScheduler"/>
    <property name="sessionDAO" ref="sessionDAO"/>
    <property name="sessionIdCookieEnabled" value="true"/>
    <property name="sessionIdCookie" ref="sessionIdCookie"/>
     <property name ="sessionListeners">   //session监听器
            <list>   
               <ref bean="shiroSessionListener"/>  
            </list>     
         </property>
</bean>

sessionDAO配置:

<bean id="sessionDAO" class="org.apache.shiro.session.mgt.eis.EnterpriseCacheSessionDAO">
    <property name="activeSessionsCacheName" value="activeSessionCache"/>
    <property name="cacheManager" ref="cacheManager"/>
    <property name="sessionIdGenerator" ref="sessionIdGenerator"/>
</bean>

cookie模板设置:

<!-- 会话Cookie模板 -->
<bean id="sessionIdCookie" class="org.apache.shiro.web.servlet.SimpleCookie">
    <constructor-arg name="name"  value="WEBSID" />
    <property name="httpOnly" value="true"/>
    <property name="maxAge" value="1800"/><!-- 单位S-->
</bean>

然后cacheManager(缓存器)配置:

ehcache-shiro.xml配置:

<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
   xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd">
<diskStore path="java.io.tmpdir/ehcache"/>
    <defaultCache maxElementsInMemory="10000"  
      overflowToDisk="false"  
      eternal="false"  
      diskPersistent="false"  
      timeToLiveSeconds="0"  
      timeToIdleSeconds="0" /> 
<cache name="authorizationCache"  
        maxElementsInMemory="2000"  
           eternal="false" 
           overflowToDisk="true" 
           timeToIdleSeconds="180"  
           timeToLiveSeconds="180"  
           diskPersistent="true"
            diskExpiryThreadIntervalSeconds="3600"/>
    <cache name="authenticationCache"  
           maxElementsInMemory="2000"  
           eternal="false" 
           overflowToDisk="true" 
           timeToIdleSeconds="180"  
           timeToLiveSeconds="180" 
           diskExpiryThreadIntervalSeconds="3600"/> 
    <cache name="activeSessionCache"  
           maxElementsInMemory="2000"
  overflowToDisk="true"
  eternal="true"
  timeToLiveSeconds="180"
  timeToIdleSeconds="180"
  diskExpiryThreadIntervalSeconds="1800"/>
</ehcache>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值