SpringBoot2 整合websocket基本写法

基本配置

@Configuration
public class WebSocketConfig {
    @Bean
    public ServerEndpointExporter serverEndpointExporter() {
        return new ServerEndpointExporter();
    }
}

```java
import org.springframework.stereotype.Component;
import javax.websocket.*;
import javax.websocket.server.PathParam;
import javax.websocket.server.ServerEndpoint;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import java.util.UUID;
import java.util.concurrent.CopyOnWriteArraySet;

/**
 * @author 
 * @version : V1.0
 * @description: WebSocket服务端代码,包含接收消息,推送消息等接口
 * @date 2019/12/1710:21
 */
@Component
@ServerEndpoint(value = "/ttlMallSocket/{userName}")
public class WebSocketServer {

    private static int onlineCount = 0;

    private static CopyOnWriteArraySet<WebSocketServer> webSocketSet = new CopyOnWriteArraySet<WebSocketServer>();

    private Session session;

    private static Map<String, Session> sessionsMap = new HashMap<>();



    /**
     * 连接建立成功调用
     *
     * @param session 客户端与socket建立的会话
     */
    @OnOpen
    public void onOpen(Session session,@PathParam(value = "userName") String userName) {
        System.out.println("连接成功;");

        this.session = session;
        webSocketSet.add(this);     //加入set中
        addOnlineCount();           //在线数加1
        //生成唯一ID
        String uuid = UUID.randomUUID().toString().replaceAll("-", "");
        sessionsMap.put(uuid, this.session);  //把唯一标识跟客户端绑定
        System.out.println("有新连接加入!当前在线人数为" + getOnlineCount());
        try {
            sendInfo(uuid,"欢迎" + userName + "加入连接!");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }


    /**
     * 给指定用户发送消息
     *
     * @param uuid 用户名
     * @param message  消息
     * @throws IOException
     */
    public static void sendInfo(String uuid, String message) {
        Session session = sessionsMap.get(uuid);
        try {
            sendMessage(session, message);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    /**
     * 发送消息方法
     *
     * @param session 客户端与socket建立的会话----给前端用户发送消息
     * @param message 消息
     * @throws IOException
     */
    public static void sendMessage(Session session, String message) throws IOException {
        if (session != null) {
            session.getBasicRemote().sendText(message);
        }
    }


    /**
     * 关闭连接时调用
     *
     * @param uuid 关闭连接的客户端的姓名
     */
    @OnClose
    public void onClose(String uuid) {
        webSocketSet.remove(this);  //从set中删除
        sessionsMap.remove("uuid");
        subOnlineCount();
        System.out.println( "断开webSocket连接!当前人数为" + getOnlineCount());
    }

    /**
     * 收到客户端消息时触发(群发)
     *
     * @param message
     * @throws IOException
     */
    @OnMessage
    public void onMessage(String message) throws IOException {
        try {
            for (Session session : sessionsMap.values()) {
                sendMessage(session, message);
            }
            //  session.getBasicRemote().sendText(message);
        } catch (Exception e) {
            e.printStackTrace();
        }

    }

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


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

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

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


}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值