springBoot--websocket扫码登录,增加rabbitMq支持集群处理。

使用websocket长连接实现扫码登录。
实现扫码登录需要两个角色,扫码端,还有就是被扫码端,打开被扫码端,前端与后端连接websocket,下面是后台与前端连接websocket的类

/**
 * webSocket 配置类
 */
@ServerEndpoint(value = "/websocket/{sid}", configurator = MySpringConfigurator.class)
@Component
@Slf4j
public class WebSocketServer{

    //静态变量,用来记录当前在线连接数。应该把它设计成线程安全的。
    private static int onlineCount = 0;

    //concurrent包的线程安全Set,用来存放每个客户端对应的MyWebSocket对象。
    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) throws Exception {
        this.session = session;
        //加入set中
        webSocketSet.add(this);
        //在线数加1
        addOnlineCount();
        log.info("有新窗口开始监听:"+sid+",当前在线人数为" + getOnlineCount());
        this.sid=sid;
        try {
            //二维码内容
            WebSocketDTO wm = new WebSocketDTO();
            //生成唯一ID
            String uuid = UUID.randomUUID().toString().replaceAll("-", "");
            wm.setType(LoginCodeTypeConstant.HDPI_LOGIN_CODE_TYPE.value());
            wm.setUid(uuid);
            String forWeb = JSONObject.toJSONString(wm);
            sendMessage(forWeb);
        } catch (IOException e) {
            log.error("用户:"+sid+",网络异常!!!!!!");
        }
    }

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

    /**
     * 收到客户端消息后调用的方法
     *
     * @param message 客户端发送过来的消息*/
    @OnMessage
    public void onMessage(String message, Session session) {
        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) {
        log.error("发生错误");
        error.printStackTrace();
    }
    /**
     * 实现服务器主动推送
     */
    public void sendMessage(String message) throws IOException {
        this.session.getBasicRemote().sendText(message);
    }


    /**
     * 群发自定义消息
     * */
    public boolean sendInfo(String message, @PathParam("sid") String sid) throws IOException {
        log.info("推送消息到窗口"+sid+",推送内容:"+message);
        for (WebSocketServer item : webSocketSet) {
            try {
                //这里可以设定只推送给这个sid的,为null则全部推送
                if(sid == null) {
                    log.info("此服务器找不到该sid{}",sid);
                    return false;
                }else if(item.sid.equals(sid)){
                    item.sendMessage(message);
                    log.info("消息发送成功!sid{}",sid);
                    return true;
                }
            } catch (IOException e) {
                continue;
            }
        }
        return false;
    }

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

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

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

    }
     public void acceptRabbitMessage(LoginCodeLogoDTO message) throws IOException {
        sendInfo(message.getProjectKey(),message.getSid());
    }
}

前端与后台连接websocket时需要传本次连接的唯一表示sid
连接成功后台主动向前端发送生成二维码的信息等等,然后前端生成二维码。
扫码端扫码,扫码端解析二维码获取到信息以及sid,调用后台接口发送给后台,后台拿着信息以及sid用websocket传输给被扫码端前端,前端拿到信息后登录。
这里面有一个问题就是 websocket有两台服务器,A、B 。前端可能与A连接的websocket,但是扫码端是服务器B,B服务器没有与前端连接的websokct导致用户登录失败。解决办法,使用RabbitMq的订阅模式。



```java
/**
     * 获取前端解析二维码的值
     * @return
     */
    @Autowired
    private AmqpTemplate amqpTemplate;
    @Autowired
    private WebSocketServer webSocketServer;
    @PostMapping("/test/localCode")
    @ApiOperation(value = "获取前端解析二维码的值", notes = "获取前端解析二维码的值")
    public ResponseContent localCode(@RequestHeader(aaa) String aaa, @RequestBody @Valid Param param){
        try {
            boolean flag = webSocketServer.sendInfo(aaa, param.getSid());
            if(!flag)
            {//发送失败广播出去,让其他节点发送
                // 广播消息到各个订阅者
                amqpTemplate.convertAndSend("login.code.exchange", "direct", loginCodeLogoDTO);
            }
            return this.markSuccess("获取成功");
        } catch (Exception e) {
            log.error("获取前端二维码解析值出错!!"+e.getMessage(), e);
            return this.markError("获取失败");
        }
    }

如果这台服务器与前端webcosket消息互发失败,就把消息广播出去,让其他的websocket服务器消费并处理消息。

  /**
     * @Description: TODO 消费扫码登录信息
     * @Author: hongyang_wang
     * @Date: 2020/3/25
     */
    @RabbitListener(bindings = @QueueBinding(
            value = @Queue(value = "#{T(java.lang.Math).random().toString()}" , durable = "true"),
            exchange = @Exchange(
                    value = "你的exchange",
                    ignoreDeclarationExceptions = "true"
            ),
            key = {"direct"}
    ))
    public void loginCode(LoginCodeLogoDTO param) {

        log.info("获取websocket信息:{}", JSON.toJSONString(param));
        try {
            webSocketServer.acceptRabbitMessage(param);
            log.info("websocket消息:{}", JSON.toJSONString(param));
        } catch (Exception e) {
            log.error("websocket消息处理失败", e);
        }
    }

你可能感兴趣的:(springBoot--websocket扫码登录,增加rabbitMq支持集群处理。)