Spring Boot WebSocket 单节点模拟实现单点登录挤退

1、创建WebSocketServer

@ServerEndpoint("/websocket/{sid}")
@Component  // 成分、组件
public class WebSocketServer {
    //静态变量,用来记录当前在线连接数。应该把它设计成线程安全的。
    private static int onlineCount = 0;
    
    //用来存放每个客户端对应的WebSocket对象。
    private static CopyOnWriteArraySet<WebSocketServer> webSocketSet = new CopyOnWriteArraySet<WebSocketServer>();

    //与某个客户端的连接会话,需要通过它来给客户端发送数据
    private Session session;

    //接收sid
    private String sid="";
    
    /**
     * 连接建立成功调用的方法
     */
    @OnOpen
    public void onOpen(Session session,@PathParam("sid") String sid) {
        this.sid=sid;
        this.session = session;
        webSocketSet.add(this);     //加入set中
        addOnlineCount();           //在线数加1
        LogUtil.log.info("有新窗口开始监听:"+sid+",当前在线人数为" + getOnlineCount());
        
        try {
            sendMessage("连接成功...");
        } catch (IOException e) {
            LogUtil.log.error("websocket IO异常");
        }
    }

    /**
     * 连接关闭调用的方法
     */
    @OnClose
    public void onClose() {
        webSocketSet.remove(this);  //从set中删除
        subOnlineCount();           //在线数减1
        LogUtil.log.info("有一连接关闭!当前在线人数为" + getOnlineCount());
    }

    /**
     * 收到客户端消息后调用的方法
     * @param message 客户端发送过来的消息
     */
    @OnMessage
    public void onMessage(String message, Session session) {
        LogUtil.log.info("收到来自窗口"+sid+"的信息:"+message);
        //群发消息
        for (WebSocketServer item : webSocketSet) {
            try {
                item.sendMessage(message);
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }

    /**
     * @param session
     * @param error
     */
    @OnError
    public void onError(Session session, Throwable error) {
        LogUtil.log.error("发生错误");
        error.printStackTrace();
    }
    
    /**
     * 实现服务器主动推送
     */
    public void sendMessage(String message) throws IOException {
        this.session.getBasicRemote().sendText(message);
    }

    /**
     * 群发自定义消息
     */
    public static void sendInfo(String message,@PathParam("sid") String sid) throws IOException {
        LogUtil.log.info("推送消息到窗口"+sid+",推送内容:"+message);
        for (WebSocketServer item : webSocketSet) {
            try {
                //这里可以设定只推送给这个sid的,为null则全部推送
                if(sid==null) {
                    item.sendMessage(message);
                }else if(item.sid.equals(sid)){
                    item.sendMessage(message);
                }
            } catch (IOException e) {
                continue;
            }
        }
    }

    public static synchronized int getOnlineCount() {
        return onlineCount;
    }

    public static synchronized void addOnlineCount() {
        WebSocketServer.onlineCount++;
    }

    public static synchronized void subOnlineCount() {
        WebSocketServer.onlineCount--;
    }

    public static WebSocketServer getWebSocket(String sid) {
        if (webSocketSet == null || webSocketSet.size() <= 0) {
            return null;
        }
        
        for (WebSocketServer item : webSocketSet) {
            if (sid.equals(item.sid)) {
                return item;
            }
        }
        return null;
    }
}

2、用户登录成功后判断

WebSocketServer wss = WebSocketServer.getWebSocket(String.valueOf(adminInfo.getAid()));
if (wss != null) {  // 如果已经登录,则发送挤退信息
    try {
        wss.sendMessage("101");
    } catch (IOException e) {
        e.printStackTrace();
    }
}

3、用户在前台登录成功后,发送连接信息给服务器

function openWebSocket(sid) { // sid为当前登录用户的id
    var socket;
    if(typeof(WebSocket) == undefined) {
        console.log("您的浏览器不支持WebSocket");
    }else{
        //实现化WebSocket对象,指定要连接的服务器地址与端口  建立连接
        socket = new WebSocket("ws://127.0.0.1:8080/EduMagSys/websocket/"+sid);

        //打开事件
        socket.onopen = function() {
            console.log("Socket 已打开");
            //socket.send("这是来自客户端的消息" + location.href + new Date());
        };

        //获得消息事件
        socket.onmessage = function(msg) {
            if (msg.data == "101") {
                alert("对不起,你的账号已经在其它地方登录,若非本人操作,请及时更换密码...");
                location.href="../login.html";
                return;
            }
        };

        //关闭事件
        socket.onclose = function() {
            console.log("Socket已关闭");
        };

        //发生了错误事件
        socket.onerror = function() {
            alert("Socket发生了错误");
        };

        $(window).unload(function(){
            socket.close();
        });
    }
}
 

注意:我这里是通过判断当前登录用户的id是否已经在服务列表webSocketSet 中存在,如果存在说明此用户已经在其它地方登录,则获取到对应的WebSocketServer对象,发送挤退信息。

猜你喜欢

转载自blog.csdn.net/qfxsxhfy/article/details/82049831