shiro 退出系统的两种方式


有两种方式实现logout 
1. 普通的action中 实现自己的logout方法,取到Subject,然后logout 
这种需要在ShiroFilterFactoryBean 中配置 filterChainDefinitions 
对应的action的url为anon 
 
             
                /user/logout = anon  
                /** = authc 
           
 

2. 使用shiro提供的logout filter 
需要定义 相应的bean 
 
         
   
 

 

 

然后将相应的url filter配置为logout如下 
 
             
                /logout = logout 
                /** = authc 
           

你可能感兴趣的:(shiro,cas集成)