客户要求不允许同一账号多地登录,这里就需要用到JavaWeb的四大作用域

  • 1、page 指当前页面有效。在一个jsp页面里有效
  • 2、request 指在一次请求的全过程中有效
  • 3、Session 是用户全局变量,在整个会话期间都有效
  • 4、application 是程序全局变量,对每个用户每个页面都有效。存放在ServletContext对象中

登录时设置用户ID(也可以其他)至application中

// 获取application对象
ServletContext application = session.getServletContext();
String sessionId = (String) application.getAttribute(user.getName()); //获取登录用户的 sessionId

if (sessionId!=null && !"".equals(sessionId)) {
    this.setMsg("该账号已登录,请您更换账号进行登录!");
    return "errors";
} else {
    application.setAttribute(user.getName(), session.getId());//设置登录用户的 sessionId
}

退出时删除该用户的sessionId

ServletContext application = session.getServletContext();
application.removeAttribute(user.getName());//系统退出,移除该用户的sessionId

作者:itmyhome


本文转载:CSDN博客