Commit 55156b74 by yangzhengze Committed by 若依

!6 强制退出时, 退出logout地址,shiro去清除session,防止出现shiro报没有权限错误。

Merge pull request !6 from yangzhengze/master
parents 90f1ffee fd827155
......@@ -240,6 +240,9 @@ public class ShiroConfig
filterChainDefinitionMap.put("/captcha/captchaImage**", "anon");
// 退出 logout地址,shiro去清除session
filterChainDefinitionMap.put("/logout", "logout");
//强制退出时, 退出logout地址,shiro去清除session,防止出现shiro报没有权限错误。
filterChainDefinitionMap.put("/monitor/online/batchForceLogout", "logout");
filterChainDefinitionMap.put("/monitor/online/forceLogout/**", "logout");
// 不需要拦截的访问
filterChainDefinitionMap.put("/login", "anon,captchaValidate");
// 系统权限列表
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment