session 中设置了生存期,20分钟,输入密码错误次数保存到session 中,过一段时间自动解除;
//登陆的用户名或者密码出错次数int n = 0;if(logintimes == null ){ n= n+ 1;; }else{ n= Integer.parseInt(logintimes) + 1;;}session.setAttribute("logintimes", n+"");if(n>3){ return Action.LOGIN; }
本文共 302 字,大约阅读时间需要 1 分钟。
session 中设置了生存期,20分钟,输入密码错误次数保存到session 中,过一段时间自动解除;
//登陆的用户名或者密码出错次数int n = 0;if(logintimes == null ){ n= n+ 1;; }else{ n= Integer.parseInt(logintimes) + 1;;}session.setAttribute("logintimes", n+"");if(n>3){ return Action.LOGIN; }
转载于:https://www.cnblogs.com/estellez/p/4945644.html