v1.11.0更新

This commit is contained in:
shengzhang
2021-01-10 00:15:23 +08:00
parent 2d3a262e2f
commit 600cc98e20
20 changed files with 84 additions and 33 deletions

View File

@@ -32,7 +32,11 @@ StpUtil.searchTokenSessionId(String keyword, int start, int size);
使用示例:
``` java
StpUtil.searchTokenValue("1000", 0, 10); // 查询value包括1000的所有token结果集从第0条开始返回10条
// 查询value包括1000的所有token结果集从第0条开始返回10条
List<String> tokenList = StpUtil.searchTokenValue("1000", 0, 10);
for (String token : tokenList) {
System.out.println(token);
}
```