websocket的测试详细步骤

1、创建一个spring mvc环境的动态web工程(具体详细步骤不多说)

2、创建一个controller

package com.sunhui.test;

import java.io.IOException;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.CopyOnWriteArraySet;

import javax.annotation.Resource;
import javax.websocket.OnClose;
import javax.websocket.OnError;
import javax.websocket.OnMessage;
import javax.websocket.OnOpen;
import javax.websocket.Session;
import javax.websocket.server.PathParam;
import javax.websocket.server.ServerEndpoint;

@ServerEndpoint(value = “/newwebsocket/{userId}”)
public class Webcomment {
@Resource
private Webcomment webcomment;

// 静态变量,用来记录当前在线连接数。应该把它设计成线程安全的。
private static int onlineCount = 0;
// concurrent包的线程安全Set,用来存放每个客户端对应的MyWebSocket对象。若要实现服务端与单一客户端通信的话,可以使用Map来存放,其中Key可以为用户标识
private static CopyOnWriteArraySet<Webcomment> webSocketSet = new CopyOnWriteArraySet<Webcomment>();
// 线程安全的Map
private static ConcurrentHashMap<String, Session> webSocketMap = new ConcurrentHashMap<String, Session>();// 建立连接的方法

@OnOpen
public void onOpen(Session session, @PathParam("userId") String userId) {
    /*
     * 获取从/websocket开始的整条链接,用于获取userId?***=***的参数 String uri =
     * session.getRequestURI().toString();
     */
    webSocketMap.put(userId, session);
    addOnlineCount(); // 在线数加
    System.out.println(userId + "进入聊天室");
    System.out.println("有新连接加入!当前在线人数为" + getOnlineCount());
}

/**
 * 连接关闭调用的方法
 */
@OnClose
public void onClose(Session session) {
    Map<String, String> map = session.getPathParameters();
    webSocketMap.remove(map.get("userId")); // 从set中删除
    for (String user : webSocketMap.keySet()) {
        System.out.println(user);
    }
    subOnlineCount(); // 在线数减
    System.out.println("有一连接关闭!当前在线人数为" + getOnlineCount());
}

/**
 * 收到客户端消息后调用的方法
 *
 * @param message
 *            客户端发送过来的消息
 * @param session
 *            可选的参数
 */
@OnMessage
public void onMessage(String message, Session session) {
    System.out.println("来自客户端的消息:" + message);
    // 获取用户ID
    Map<String, String> map = session.getPathParameters();
    String userId = map.get("userId");
    for (String user : webSocketMap.keySet()) {
        try {
            sendMessage(user + "你好,我是" + userId + "   " + message,
                    webSocketMap.get(user));
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

/**
 * 发生错误时调用
 *
 * @param session
 * @param error
 */
@OnError
public void onError(Session session, Throwable error) {
    System.out.println("发生错误");
    error.printStackTrace();
}

public void sendMessage(String message, Session session) throws IOException {
    if (session.isOpen()) {
        session.getAsyncRemote().sendText(message);

    }
    // this.session.getAsyncRemote().sendText(message);
}

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

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

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

}

3、创建一个html页面

new document
<center>
    Welcome<br />
    <input id="text" type="text" />
    <button οnclick="send()">发送消息</button>
    <hr />
    <button οnclick="closeWebSocket()">关闭WebSocket连接</button>
    <hr />
    <div id="message"></div>

4、导入 jquery-xxx.min.js

5、接下来就是测试了。。。。。

效果如下:

到此测试完成。。。
————————————————
版权声明:本文为CSDN博主「sunhui86015336」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/sunhui86015336/article/details/80970372

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值