码迷,mamicode.com
首页 > Web开发 > 详细

sprintmvc+shiro中的ehcache配置

时间:2017-01-30 10:41:46      阅读:277      评论:0      收藏:0      [点我收藏+]

标签:ebs   log   class   安全管理   manager   config   share   factor   session   

<!-- 缓存管理器开始 -->  
    <bean id="cacheManager" class="org.apache.shiro.cache.ehcache.EhCacheManager">  
            <property name="cacheManager" ref="ehCacheManager"/>  
    </bean>  
    <bean id="ehCacheManager" class ="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">  
        <property name="configLocation" value="classpath:ehcache/ehcache.xml" />  
        <property name="shared" value="true"></property>  
    </bean>
 <!-- 安全管理器 -->
    <bean id="securityManager" class="org.apache.shiro.web.mgt.DefaultWebSecurityManager">
        <property name="realm" ref="userRealm"/>
        <property name="sessionManager" ref="sessionManager"/>
        <property name="cacheManager" ref="cacheManager"/>
        <property name="rememberMeManager" ref="rememberMeManager"/>
    </bean>

 

<!-- 缓存管理器开始 -->  <bean id="cacheManager" class="org.apache.shiro.cache.ehcache.EhCacheManager">          <property name="cacheManager" ref="ehCacheManager"/>  </bean>  <bean id="ehCacheManager" class ="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">      <property name="configLocation" value="classpath:ehcache/ehcache.xml" />      <property name="shared" value="true"></property>  </bean>

sprintmvc+shiro中的ehcache配置

标签:ebs   log   class   安全管理   manager   config   share   factor   session   

原文地址:http://www.cnblogs.com/iaoc/p/6357904.html

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