From 1713c123000197858fb7266b38374f3e5d09d826 Mon Sep 17 00:00:00 2001 From: puzhibing <393733352@qq.com> Date: 星期三, 15 一月 2025 22:32:32 +0800 Subject: [PATCH] 修改bug --- ruoyi-auth/src/main/java/com/ruoyi/auth/service/SysPasswordService.java | 22 +++++++++++++--------- 1 files changed, 13 insertions(+), 9 deletions(-) diff --git a/ruoyi-auth/src/main/java/com/ruoyi/auth/service/SysPasswordService.java b/ruoyi-auth/src/main/java/com/ruoyi/auth/service/SysPasswordService.java index 1f6a419..4dfbd86 100644 --- a/ruoyi-auth/src/main/java/com/ruoyi/auth/service/SysPasswordService.java +++ b/ruoyi-auth/src/main/java/com/ruoyi/auth/service/SysPasswordService.java @@ -24,7 +24,6 @@ private RedisService redisService; private int maxRetryCount = CacheConstants.PASSWORD_MAX_RETRY_COUNT; - private Long lockTime = CacheConstants.PASSWORD_LOCK_TIME; @Autowired @@ -58,14 +57,19 @@ recordLogService.recordLogininfor(request, user.getUserId().intValue(), username, Constants.LOGIN_FAIL_STATUS,errMsg); throw new ServiceException(errMsg); } - - if (!matches(user, password)) - { - retryCount = retryCount + 1; - recordLogService.recordLogininfor(request, user.getUserId().intValue(), username, Constants.LOGIN_FAIL_STATUS, String.format("密码输入错误%s次", retryCount)); - redisService.setCacheObject(getCacheKey(username), retryCount, lockTime, TimeUnit.MINUTES); - throw new ServiceException("密码错误"); - } +// +// if (!matches(user,password)){ +// retryCount = retryCount + 1; +// recordLogService.recordLogininfor(request, user.getUserId().intValue(), username, Constants.LOGIN_FAIL_STATUS, String.format("密码输入错误%s次", retryCount)); +// redisService.setCacheObject(getCacheKey(username), retryCount, lockTime, TimeUnit.MINUTES); +// throw new ServiceException("密码错误"); +// } +// if (!user.getPassword().equals(password)){ +// retryCount = retryCount + 1; +// recordLogService.recordLogininfor(request, user.getUserId().intValue(), username, Constants.LOGIN_FAIL_STATUS, String.format("密码输入错误%s次", retryCount)); +// redisService.setCacheObject(getCacheKey(username), retryCount, lockTime, TimeUnit.MINUTES); +// throw new ServiceException("密码错误"); +// } else { clearLoginRecordCache(username); -- Gitblit v1.7.1