使用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中使用使用spring security的remember Me()功能创建的cookie? [复制]