1 什麼是單點登錄java
package com.ll.singlelogin; import javax.servlet.http.*; import java.util.*; public class SingleLogin implements HttpSessionListener { // 保存sessionID和username的映射 private static HashMap hUserName = new HashMap(); /** 如下是實現HttpSessionListener中的方法* */ public void sessionCreated(HttpSessionEvent se) { } public void sessionDestroyed(HttpSessionEvent se) { hUserName.remove(se.getSession().getId()); } /** * isAlreadyEnter-用於判斷用戶是否已經登陸以及相應的處理方法 * * @param sUserName * String-登陸的用戶名稱 * @return boolean-該用戶是否已經登陸過的標誌 */ public static boolean isAlreadyEnter(HttpSession session, String sUserName) { boolean flag = false; // 若是該用戶已經登陸過,則使上次登陸的用戶掉線(依據使用戶名是否在hUserName中) if (hUserName.containsValue(sUserName)) { flag = true; // 遍歷原來的hUserName,刪除原用戶名對應的sessionID(即刪除原來的sessionID和username) Iterator iter = hUserName.entrySet().iterator(); while (iter.hasNext()) { Map.Entry entry = (Map.Entry) iter.next(); Object key = entry.getKey(); Object val = entry.getValue(); if (((String) val).equals(sUserName)) { hUserName.remove(key); } } // 添加如今的sessionID和username hUserName.put(session.getId(), sUserName); System.out.println("hUserName = " + hUserName); } else {// 若是該用戶沒登陸過,直接添加如今的sessionID和username flag = false; hUserName.put(session.getId(), sUserName); System.out.println("hUserName = " + hUserName); } return flag; } /** * isOnline-用於判斷用戶是否在線 * * @param session * HttpSession-登陸的用戶名稱 * @return boolean-該用戶是否在線的標誌 */ public static boolean isOnline(HttpSession session) { boolean flag = true; if (hUserName.containsKey(session.getId())) { flag = true; } else { flag = false; } return flag; } }
web.xml部署於/App/WEB-INF下 web
<?xml version= "1.0 " encoding= "ISO-8859-1 "?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN " "http://java.sun.com/j2ee/dtds/web-app_2.3.dtd "> <web-app> <listener> <listener-class> com.inspirer.dbmp.SessionListener </listener-class> </listener> </web-app>
應用部分
1.在你的登陸驗證時,調用SessionListener.isAlreadyEnter(session, "admin ")
既能夠判斷該用戶名的用戶是否登陸過,又可使上次登陸的用戶掉線
2.其餘頁面調用SessionListener.isOnline(session),能夠判斷該用戶是否在線.數據庫
轉自:http://blog.csdn.net/java_freshman01/article/details/7202776瀏覽器
採用SSH架構加以說明:
1. 創建一個登陸管理類LoginManager
2. 在LoginManager中定義一個集合,管理登陸的用戶。
3. 在Spring中將LoginManager配置成單例
4. 若是使用自定義的用戶管理類,則爲了說明方便,將此類命名爲UserContext(表示用戶受權的上下文)
5. 若是未使用自定義的用戶管理類,則直接使用Session。
6. 在登陸受權對象中,檢查用戶是不是合法用戶,若是是合法用戶,則在LoginManager的集合中查找用戶是否已經在線,若是不在線,則將用戶加入集合。
7. 處理策略一:若是用戶已經在線,則取新登陸用戶的Session,將它失效,則能阻止新登陸用戶登陸。
8. 處理策略二:若是用戶已經在線,則取出在線用戶的Session,將它失效,再把新登陸用戶加入LoginManager的集合。則先登陸用戶不能執行有權限的操做,只能從新登陸。安全
1. applicationContext.xml
<bean id="loginManager" class="LoginManager" scope="singleton" /> <bean id="action" class="LoginAction" scopt="prototype" > <property name="laginManager" ref="loginManager" /> </bean>
2. LoginManager.java服務器
Collection<Session> sessions; public Session login(Session session) { for (Session s : sessions) { if (s 與 session 是同一用戶) 策略一: return session 策略二:{ sessions.add(session); // 這兩行在循環中操做集合類會拋出異常 sessions.remove(s); // 此處僅爲簡單示範代碼,實際代碼中應該在循環外處理 return s; } } sessions.add(session); return null; }
3. LoginAction.javacookie
LoginManager loginManager; public String execute() throws Exception { 取session 檢查用戶名,密碼 if (是合法用戶) { session = loginManager.login(session); if (null!=session) session.invalidate(); } }
4. 若是自定義了UserContext,則可將集合改爲Collection<UserContext> users;session
5. UserContext.java架構
Session session; Session getSession() { return this.session; } boolean login(String userName, String password) { 訪問數據庫,檢查用戶名密碼 return 是否合法; } boolean sameUser(UserContext uc) { return uc.userName.equals(this.userName); }
6. 修改LoginManager.javaapp
Collection<UserContext> users; public UserContext login(UserContext user) { for (UserContext uc : users) { if (uc.sameUser(user)) 策略一: return user 策略二:{ users.add(user); // 這兩行在循環中操做集合類會拋出異常 users.remove(uc); // 此處僅爲簡單示範代碼,實際代碼中應該在循環外處理 return uc; } } users.add(user); return null; }
7. 修改LoginAction.java
public String execute() throws Exception { 取session // 也能夠在UserContext內部取session。 UserContext user = new UserContext(); user.setSession(session); if (user.login(userName, password)) { UserContext uc = loginManager.login(user); if (null!=uc) uc.getSession().invalidate(); } }