docs: 多账号模式新增注意点:运行时不可更改 LoginType

This commit is contained in:
click33 2025-04-01 18:57:16 +08:00
parent e0fdfe84ee
commit 68939084a2

View File

@ -316,6 +316,22 @@ public SaResult test2() {
- 两个 if 均返回 true代表客户端在两个账号体系都登录了。
### 12、注意点运行时不可更改 LoginType
在 Q群 解决问题时,发现有些同学会写出类似下列形式的代码:
``` java
StpUtil.login(10001);
StpUtil.getStpLogic().setLoginType("user");
StpUtil.getSession().set("name", "zhangsan");
```
这是一种错误写法LoginType 不可在运行时更改,只能在项目启动时指定。一旦项目启动成功后再修改 LoginType ,就会造成线程安全问题和严重的逻辑问题。
---