WebSocket的实际应用

第一步 : 引入POM依赖


   org.springframework.boot
   spring-boot-starter-websocket

第二步 :java代码如下

package com.ruoyi.web.controller.websoket;

import org.springframework.stereotype.Component;

import javax.annotation.PostConstruct;
import javax.websocket.*;
import javax.websocket.server.ServerEndpoint;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.CopyOnWriteArraySet;
import java.util.concurrent.atomic.AtomicInteger;

@ServerEndpoint(value = "/webSocket/dealWith")
@Component
public class WebSocketServer {

    public static String userId = null;

    @PostConstruct
    public void init() {
        System.out.println("websocket 加载");
    }
    private static final AtomicInteger OnlineCount = new AtomicInteger(0);
    // concurrent包的线程安全Set,用来存放每个客户端对应的Session对象。
    private static CopyOnWriteArraySet SessionSet = new CopyOnWriteArraySet();
    public static Map map = new HashMap<>();

    /**
     * 连接建立成功调用的方法并打印出相关的数据
     */
    @OnOpen
    public void onOpen(Session session) {
        SessionSet.add(session);
        map.put(userId,session);
        int cnt = OnlineCount.incrementAndGet(); // 在线数加1
        System.out.printf("有连接加入,当前连接数为:"+ cnt);
        SendMessage(session, "连接成功");
    }

    /**
     * 连接关闭调用的方法
     */
    @OnClose
    public void onClose(Session session) {
        SessionSet.remove(session);
        int cnt = OnlineCount.decrementAndGet();
        System.out.printf("有连接关闭,当前连接数为:"+ cnt);
    }

    /**
     * 收到客户端消息后调用的方法
     *
     * @param message
     * 客户端发送过来的消息
     */
    @OnMessage
    public void onMessage(String message, Session session) {
        System.out.printf("来自客户端的消息:"+ message);
        SendMessage(session, "收到消息,消息内容:"+ message);

    }

    /**
     * 出现错误
     * @param session
     * @param error
     */
    @OnError
    public void onError(Session session, Throwable error) {
        System.out.printf("发生错误:{},Session ID: {}",error.getMessage(),session.getId());
        error.printStackTrace();
    }

    /**
     * 发送消息,实践表明,每次浏览器刷新,session会发生变化。
     * @param session
     * @param message
     */
    public static void SendMessage(Session session, String message) {
        try {
            session.getBasicRemote().sendText(message);
        } catch (IOException e) {
            System.out.printf("发送消息出错:"+ e.getMessage());
            e.printStackTrace();
        }
    }

    /**
     * 群发消息
     * @param message
     * @throws IOException
     */
    public static void BroadCastInfo(String message) throws IOException {
        for (Session session : SessionSet) {
            if(session.isOpen()){
                SendMessage(session, message);
            }
        }
    }

    /**
     * 指定Session发送消息
     * @param sessionId
     * @param message
     * @throws IOException
     */
    public static void SendMessage(String message,String sessionId) throws IOException {
        Session session = null;
        for (Session s : SessionSet) {
            if(s.getId().equals(sessionId)){
                session = s;
                break;
            }
        }
        if(session!=null){
            SendMessage(session, message);
        }
        else{
            System.out.printf("没有找到你指定ID的会话:"+ sessionId);
        }
    }
}

第三步 : 上JS代码




    
    websocket测试
    
    



WebSocket测试,客户端接收到的消息如下:

后续补充:如果使用上面的代码socket报404的话可参考下面方法解决

报404我们首先要排除是我们项目自带拦截等限制问题,如果都没问题的话springBoot自身也会有一个使socket404问题,如何解决可参考下面代码,首先我们引入socker指定依赖,不能使用Spring自带的依赖,需要我们单独引用

   
            org.springframework.boot
            spring-boot-starter-websocket
            1.3.5.RELEASE
        

引入socket的配置

package com.odcchina.fai.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.socket.server.standard.ServerEndpointExporter;

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

通过上面的步骤即可解决问题!!!!!!!!!!!!

你可能感兴趣的:(学习,websocket,java,网络协议)