v1.18.0 更新

This commit is contained in:
shengzhang
2021-04-24 00:53:39 +08:00
parent 4ee161031f
commit d01db3442b
27 changed files with 53 additions and 36 deletions

View File

@@ -21,7 +21,7 @@ sa-token内置两种模式完成注解鉴权分别是`AOP模式`和`拦截器
<dependency>
<groupId>cn.dev33</groupId>
<artifactId>sa-token-spring-aop</artifactId>
<version>1.17.0</version>
<version>1.18.0</version>
</dependency>
```

View File

@@ -14,7 +14,7 @@ Sa-token默认将会话数据保存在内存中此模式读写速度最快
<dependency>
<groupId>cn.dev33</groupId>
<artifactId>sa-token-dao-redis</artifactId>
<version>1.17.0</version>
<version>1.18.0</version>
</dependency>
```
优点兼容性好缺点Session序列化后基本不可读对开发者来讲等同于乱码
@@ -26,7 +26,7 @@ Sa-token默认将会话数据保存在内存中此模式读写速度最快
<dependency>
<groupId>cn.dev33</groupId>
<artifactId>sa-token-dao-redis-jackson</artifactId>
<version>1.17.0</version>
<version>1.18.0</version>
</dependency>
```
优点Session序列化后可读性强可灵活手动修改缺点兼容性稍差