在 Spring 中注销特定请求映射

发布于 2024-12-03 21:48:44 字数 88 浏览 0 评论 0原文

我需要特定的 RequestMapping 使用户注销。它可以是多个requestMappings。如果存在特殊注释来执行此操作就好了。

提前致谢

I need on a particular RequestMapping make user logout. It can be several requestMappings. It would be fine if special annotation exist to do this.

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

勿挽旧人 2024-12-10 21:48:44

如果您使用 Spring 身份验证服务(Spring Security),您可以通过配置来完成此操作,您可以设置注销 url,然后 Spring 会处理它。

否则,您可以自己将 url 映射为注销,并且在调用时,您应该使用户会话无效。

如果你想检查用户是否登录,你应该首先检查已经创建的会话是否存在。

If you are using spring authentication service (Spring Security), you can do it through configuration whereby you set a logout url and spring takes care of it.

Otherwise, you can yourself map an url as logout and upon invocation, you should invalidate the user session.

If you want to check if the user is logged in or not, you should check existence of already created session first.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文