Browse Source
密码输入错误时,登录日志重复
Signed-off-by: 也曾为你像超人 <1553592282@qq.com>
master
也曾为你像超人
2 years ago
committed by
Gitee
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with
0 additions and
4 deletions
-
ruoyi-framework/src/main/java/com/ruoyi/framework/web/service/SysPasswordService.java
|
|
@ -60,16 +60,12 @@ public class SysPasswordService |
|
|
|
|
|
|
|
if (retryCount >= Integer.valueOf(maxRetryCount).intValue()) |
|
|
|
{ |
|
|
|
AsyncManager.me().execute(AsyncFactory.recordLogininfor(username, Constants.LOGIN_FAIL, |
|
|
|
MessageUtils.message("user.password.retry.limit.exceed", maxRetryCount, lockTime))); |
|
|
|
throw new UserPasswordRetryLimitExceedException(maxRetryCount, lockTime); |
|
|
|
} |
|
|
|
|
|
|
|
if (!matches(user, password)) |
|
|
|
{ |
|
|
|
retryCount = retryCount + 1; |
|
|
|
AsyncManager.me().execute(AsyncFactory.recordLogininfor(username, Constants.LOGIN_FAIL, |
|
|
|
MessageUtils.message("user.password.retry.limit.count", retryCount))); |
|
|
|
redisCache.setCacheObject(getCacheKey(username), retryCount, lockTime, TimeUnit.MINUTES); |
|
|
|
throw new UserPasswordNotMatchException(); |
|
|
|
} |
|
|
|