|
@@ -334,7 +334,7 @@ public class SecurityService {
|
|
|
where apptoken=? and sessionid=? and requestip=? and isexpires=0 """;
|
|
|
List<Map<String, Object>> userLoginLogList = DataBase.query(Config.getSecurityConnectionStr(), query, appToken, sessionId, ip);
|
|
|
if (userLoginLogList.isEmpty()) {
|
|
|
- return UniReturnUtil.fail("登录失败");
|
|
|
+ return UniReturnUtil.fail("登录失败:在数据库中没有找到当前session的登录请求");
|
|
|
}
|
|
|
Map<String, Object> userLoginLog = userLoginLogList.get(0);
|
|
|
Object securityCodeEffectiveObj = application.get("securitycodeeffective");
|
|
@@ -426,9 +426,9 @@ public class SecurityService {
|
|
|
}
|
|
|
Map<String, Object> userLoginLog = userLoginLogList.get(0);
|
|
|
Object userIdObj = userLoginLog.get("userid");
|
|
|
- String delete = "delete from userloginlog where userid=?";
|
|
|
+ String delete = "update userloginlog set isexpires=1, logouttime=? where userid=? and usertoken=? and sessionid=?";
|
|
|
DataBase.update(Config.getSecurityConnectionStr(), delete,
|
|
|
- userIdObj
|
|
|
+ LocalDateTime.now(), userIdObj, userToken, sessionId
|
|
|
);
|
|
|
return UniReturnUtil.success("成功");
|
|
|
}
|