在 Spring 中注销特定请求映射
我需要特定的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 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.