mirror of
https://gitee.com/dromara/sa-token.git
synced 2025-04-05 17:37:53 +08:00
补全文档
This commit is contained in:
parent
b38f1e06eb
commit
fa16d9c5e1
@ -15,6 +15,7 @@
|
||||
| -4 | NotLoginException.BE_REPLACED | 已读取到 token,但是 token 已被顶下线 |
|
||||
| -5 | NotLoginException.KICK_OUT | 已读取到 token,但是 token 已被踢下线 |
|
||||
| -6 | NotLoginException.TOKEN_FREEZE | 已读取到 token,但是 token 已被冻结 |
|
||||
| -7 | NotLoginException.NO_PREFIX | 未按照指定前缀提交 token |
|
||||
|
||||
|
||||
|
||||
@ -50,6 +51,9 @@ public SaResult handlerNotLoginException(NotLoginException nle)
|
||||
else if(nle.getType().equals(NotLoginException.TOKEN_FREEZE)) {
|
||||
message = "token 已被冻结";
|
||||
}
|
||||
else if(nle.getType().equals(NotLoginException.NO_PREFIX)) {
|
||||
message = "未按照指定前缀提交 token";
|
||||
}
|
||||
else {
|
||||
message = "当前会话未登录";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user