使用Cookie存储有spring boot jwt logout解决方案吗?

Posted

技术标签:

【中文标题】使用Cookie存储有spring boot jwt logout解决方案吗?【英文标题】:Is there spring boot jwt logout solution in using Cookie storage? 【发布时间】:2020-04-29 02:27:17 【问题描述】:
I stored jwt token in  Cookie Storage . 

我想在注销操作中删除或过期此令牌。我应该怎么做 ?有人可以给我建议吗?谢谢。我使用以下代码:

final String token=jwtTokenUtil.generateToken(userDetials);
Cookie cookie = new Cookie("token",token);
cookie.setHttpOnly(true);`enter code here`
response.addCookie(cookie);

【问题讨论】:

【参考方案1】:

基于Delete cookie from a servlet response

创建一个值为 null 的新 cookie 并将其添加到响应中。所以你会替换

Cookie cookie = new Cookie("token",token);

Cookie cookie = new Cookie("token",null);

【讨论】:

以上是关于使用Cookie存储有spring boot jwt logout解决方案吗?的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot JWT 身份验证

JSESSIONID cookie 未存储

如何阻止 Spring Boot 添加会话 cookie?

如何在spring boot中使用使用spring security的remember Me()功能创建的cookie? [复制]

将cookie设置为安全时Spring Boot无法登录

无法在 Java Spring Boot / Angular 应用程序中获取 cookie