Commit 90193cb8 by 梅存智

Merge branch 'dev' into 'master'

修改密码锁定失效时间

See merge request !2
parents 07cfa1ff 42fac1e7
...@@ -114,7 +114,7 @@ public class AuthController { ...@@ -114,7 +114,7 @@ public class AuthController {
private static final Logger logger = LoggerFactory.getLogger(AuthController.class); private static final Logger logger = LoggerFactory.getLogger(AuthController.class);
private static final String LOGIN_PASSWORD_ERROR_RECORD = "login:password:err:times:"; private static final String LOGIN_PASSWORD_ERROR_RECORD = "login:password:err:times:";
private static final Long ERROR_LOCK_TIME = 900L; private static final Long ERROR_LOCK_TIME = 300L;
private static final Integer ERROR_MAX_LOCK_TIMES = 5; private static final Integer ERROR_MAX_LOCK_TIMES = 5;
private static final Integer PC = 1; private static final Integer PC = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment