[SpringSecurity]web权限方案_用户注销
Posted 唐火
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[SpringSecurity]web权限方案_用户注销相关的知识,希望对你有一定的参考价值。
用户注销
在配置类中添加退出映射地址
//退出
http.logout().logoutUrl("/logout").logoutSuccessUrl("/test/hello").permitAll();
测试
- 修改配置类,登陆成功之后跳转到成功页面
- 在成功页面添加超链接,写设置退出路径
success.html:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
登陆成功
<a href = "/logout">退出</a>
</body>
</html>
登陆成功之后,在成功页面点击退出,再去访问其他controller吗,不能进行访问的
以上是关于[SpringSecurity]web权限方案_用户注销的主要内容,如果未能解决你的问题,请参考以下文章
[SpringSecurity]web权限方案_CSRF功能
[SpringSecurity]web权限方案_用户授权_基于权限访问控制_基于角色访问控制_hasAuthority和hasAnyAuthority_hasRole和hasAnyRole
[SpringSecurity]web权限方案_用户认证_自定义用户登录页面
[SpringSecurity]web权限方案_用户授权_注解使用