Spring和shiro整合 logout 配置方式

1. 普通的action中 实现自己的logout方法,取到Subject,然后logout这种需要在ShiroFilterFactoryBean 中配置filterChainDefinitions 对应的action的url为anon。
<property name="filterChainDefinitions"> 
    <value> 
      # some example chain definitions: 
      /index.htm = anon 
      /logout = anon 
      /unauthed = anon 
      /console/** = anon 
      /css/** = anon 
      /js/** = anon 
      /lib/** = anon 
      /admin/** = authc, roles[admin] 
      /docs/** = authc, perms[document:read] 
      /** = authc 
      # more URL-to-FilterChain definitions here 
    </value>
</property>

2. 使用shiro提供的logout filter,自定义redirectUrl。 

<bean id="logout" class="org.apache.shiro.web.filter.authc.LogoutFilter"> 
        <property name="redirectUrl" value="/loginform" /> 
    </bean>

  然后将相应的url filter配置为logout如下 

<property name="filterChainDefinitions"> 
    <value> 
      # some example chain definitions: 
      /index.htm = anon 
      /logout = logout 
      /unauthed = anon 
      /console/** = anon 
      /css/** = anon 
      /js/** = anon 
      /lib/** = anon 
      /admin/** = authc, roles[admin] 
      /docs/** = authc, perms[document:read] 
      /** = authc 
      # more URL-to-FilterChain definitions here 
    </value>
</property>



你可能感兴趣的:(Spring和shiro整合 logout 配置方式)