例如:
def test() {
TokenStorageService.removeToken("sdfdasdsdse3we434434dfdsfdf")
respond(data: "OK")
}
请帮助我!
答案 0 :(得分:0)
如果我们使用令牌存储JWT,则无法删除令牌,但是令牌存储GORM可能。只需尝试一下即可,效果很好。
String removeAccessToken(String token){
try{
tokenStorageService.removeToken(token)
} catch (Exception e){
//Exception handling code
e.printStackTrace()
}
return
}