webSocket与redis结合,和客户端交互及统计在线人数的实现

Posted 阿啄debugIT

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webSocket与redis结合,和客户端交互及统计在线人数的实现相关的知识,希望对你有一定的参考价值。

前提

实现对客户端的在线统计,及与客户端的交互和接受redis的消息

设置spring上下文

import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Component;

/**
 * <b><code>ApplicationContextRegister</code></b>
 * <p>
 * class_comment
 * </p>
 * <b>Create Time:</b> 2019/12/30 16:40
 *
 * @author ong
 * @version 0.0.1
 * @since core-be 0.0.1
 */

@Component
@Lazy(false)//不延时代表查询出对象A的时候,会把B对象也查询出来放到A对象的引用中,A对象中的B对象是有值的。
public class ApplicationContextRegister implements ApplicationContextAware 
    private static ApplicationContext APPLICATION_CONTEXT;

    /**
     * 设置spring上下文  *  * @param applicationContext spring上下文  * @throws BeansException  * author:huochengyan https://bl

以上是关于webSocket与redis结合,和客户端交互及统计在线人数的实现的主要内容,如果未能解决你的问题,请参考以下文章

如何利用Websocket实现ROS与Web的交互?

WebSocket 结合 Nginx 实现域名及 WSS 协议访问

客户端与服务器端使用webSocket进行交互,使用json解析数据

如何使用django 结合websocket 进行实时目标检测呢?以yolov5 为例

WebSocket的交互实例

一篇文章读懂:WebSocket分析及实践