Java 使用WebScoket实现消息实时推送

参考链接:(java)websocket服务的两种实现方式_java websocket 服务端-CSDN博客

SpringBoot2.0集成WebSocket,实现后台向前端推送信息_springboot集成websocket-CSDN博客

刚接触java如何引入包不太懂,请参考上面的链接。我是直接在pom里面的dependencies标签里加的下面代码:

       <dependency>
            <groupId>cn.control.cp</groupId>
            <artifactId>production-spring-boot-starter-websocket</artifactId>
        </dependency>

后台服务类(特别注意,当一直返回200的话记得找到设置拦截的地方设置:
//httpSecurity.antMatchers("/websocket/**","/ws/**").permitAll()//使WebScoket不会被拦截

):

package cn.control.cp.onway.WebScoket;

import cn.hutool.json.JSONUtil;
import com.alibaba.excel.util.StringUtils;
import lombok.extern.slf4j.Slf4j;
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.concurrent.ConcurrentHashMap;

@Component
@Slf4j
@ServerEndpoint(value = "/websocket/{userId}")  // 接口路径 ws://localhost:48082/webSocket/userId;
// 注意httpSecurity设置匿名不验证
//httpSecurity.antMatchers("/websocket/**","/ws/**").permitAll()//使WebScoket不会被拦截
public class WebsocketServer {
    /**静态变量,用来记录当前在线连接数。应该把它设计成线程安全的。*/
    private static int onlineCount = 0;
    /**concurrent包的线程安全Set,用来存放每个客户端对应的MyWebSocket对象。*/
    private static ConcurrentHashMap<String,WebsocketServer> webSocketMap = new ConcurrentHashMap<>();
    /**与某个客户端的连接会话,需要通过它来给客户端发送数据*/
    private Session session;
    /**接收userId*/
    private String userId = "";

    /**
     * 连接建立成功调用的方法
     */
    @OnOpen
    public void onOpen(Session session,@PathParam("userId") String userId) {
        this.session = session;
        this.userId = userId;
        if(webSocketMap.containsKey(userId)){
            //加入set中
            webSocketMap.put(userId,this);
        }else{
            //加入set中
            webSocketMap.put(userId,this);
            //在线数加1
            addOnlineCount();
        }
        log.info("用户连接:" + userId + ",当前在线人数为:" + getOnlineCount());
        try {
            sendMessage("连接成功");
        } catch (IOException e) {
            e.printStackTrace();
            log.error("用户:"+userId+",网络异常!!!!!!");
        }
    }

    /**
     * 连接关闭调用的方法
     */
    @OnClose
    public void onClose() {
        if(webSocketMap.containsKey(userId)){
            //从set中删除
            webSocketMap.remove(userId);
            //人数减一
            subOnlineCount();
        }
        log.info("用户退出:" + userId + ",当前在线人数为:" + getOnlineCount());
    }

    /**
     * 收到客户端消息后调用的方法
     * @param jsonMessage 客户端发送过来的消息
     */
    @OnMessage
    public void onMessage(String jsonMessage, Session session) {
        log.info("用户消息:{} ,jsonMessage -> {}", userId, jsonMessage);
        // 消息持久化 TODO
        if (StringUtils.isNotBlank(jsonMessage)) {
            MessageVo messageVo = JSONUtil.toBean(jsonMessage, MessageVo.class);
            messageVo.setUserId(this.userId); // 增加发送人,防止篡改
            String toUserId = messageVo.getToUserId();
            if (StringUtils.isNotBlank(toUserId) && webSocketMap.containsKey(toUserId)) {
                try {
                    webSocketMap.get(toUserId).sendMessage(messageVo.getContent());
                } catch (IOException e) {
                    e.printStackTrace();
                    log.error("消息发送错误");
                }
            } else {
                log.info("接收者userId: {}, 当前不在线", toUserId);
            }
        }
    }

    /**
     *
     * @param session
     * @param error
     */
    @OnError
    public void onError(Session session, Throwable error) {
        log.error("用户错误:" + this.userId + ",原因:" + error.getMessage());
        error.printStackTrace();
    }

    /**
     * 实现服务器主动推送
     */
    public void sendMessage(String message) throws IOException {
        this.session.getBasicRemote().sendText(message);
    }


    /**
     * 发送自定义消息
     *
     */
    public static boolean sendInfo(String message,@PathParam("userId") String userId) throws IOException {
        log.info("发送消息到:" + userId + ",报文:" + message);
        if(StringUtils.isNotBlank(userId) && webSocketMap.containsKey(userId)){
            webSocketMap.get(userId).sendMessage(message);
            return true;
        }else{
            log.error("用户" + userId + ",不在线!");
            return false;
        }
    }

    /**
     * 获取在线人数
     * @return
     */
    public static synchronized int getOnlineCount() {
        return onlineCount;
    }

    /**
     * 在线人数加一
     */
    public static synchronized void addOnlineCount() {
        WebsocketServer.onlineCount++;
    }

    /**
     * 在线人数减一
     */
    public static synchronized void subOnlineCount() {
        WebsocketServer.onlineCount--;
    }
}

WebsocketConfig类(这好像是用注解启动服务的,不需要再配置什么启动啥的)
package cn.control.cp.onway.WebScoket;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.socket.config.annotation.EnableWebSocket;
import org.springframework.web.socket.config.annotation.WebSocketConfigurer;
import org.springframework.web.socket.config.annotation.WebSocketHandlerRegistry;
import org.springframework.web.socket.server.standard.ServerEndpointExporter;

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

前台使用:ts文件

export const WebScoketApi = {
  // 查询用车申请分页
  getVehicleApplicationPage: async (params: any) => {
    return await request.get({ url: `/control/sqs-loadingandshipping-manage/vehicleapplicationpage`, params })
  },
  openSocket(socket:any) {
    if(typeof(WebSocket) == "undefined") {
        console.log("您的浏览器不支持WebSocket");
    }else{
        console.log("您的浏览器支持WebSocket");
        //实现化WebSocket对象,指定要连接的服务器地址与端口  建立连接
        //等同于socket = new WebSocket("ws://localhost:8888/xxxx/im/25");
        //var socketUrl="${request.contextPath}/im/"+$("#userId").val();
        //var socketUrl="http://localhost:9999/demo/imserver/"+$("#userId").val();
        let socketUrl="http://localhost:48082/websocket/1";
        socketUrl=socketUrl.replace("https","ws").replace("http","ws");
        console.log(socketUrl);
        if(socket!=null){
            socket.close();
            socket=null;
        }
        socket = new WebSocket(socketUrl);
        //打开事件
        socket.onopen = function() {
            console.log("websocket已打开");
            //socket.send("这是来自客户端的消息" + location.href + new Date());
        };
        //获得消息事件
        socket.onmessage = function(msg) {
            console.log(msg.data);
            //发现消息进入    开始处理前端触发逻辑
        };
        //关闭事件
        socket.onclose = function() {
            console.log("websocket已关闭");
        };
        //发生了错误事件
        socket.onerror = function() {
            console.log("websocket发生了错误");
        }
    }
},
 sendMessage(socket:WebSocket) {
  if(typeof(WebSocket) == "undefined") {
      console.log("您的浏览器不支持WebSocket");
  }else {
      console.log("您的浏览器支持WebSocket");
      socket.send('{"toUserId":"'+"#toUserId"+'","contentText":"'+"#contentText"+'"}');
  }
}
}

VUE文件:


<script setup lang="ts">
import { WebScoketApi } from '@你的ts文件所在路径';
var webSocket;
//在钩子函数上使用该方法即可
   function connection(){
    WebScoketApi.openSocket(webSocket)//打开链接
    // webSocket = new WebSocket("ws://localhost:48082/production/websocket/12");
    // webSocket.onopen = function (event) {
    //     console.log("WebSocket opened.");
    // };

    // webSocket.onmessage = function (event) {
    //     console.log("Received message: " + event.data);
    // };

    // webSocket.onclose = function (event) {
    //     console.log("WebSocket closed.");
    // };
   } 
</script>

记录这篇文章主要是因为一直报200的错误,后来才发现是被拦截的,修改后已成功通讯。我只是给JAVA大佬打下手的,有不足之处请参考顶部链接。

  • 5
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
Java实现WebSocket实现消息推送的步骤如下: 1.创建WebSocket配置类 ```java @Configuration @EnableWebSocket public class WebSocketConfig implements WebSocketConfigurer { @Override public void registerWebSocketHandlers(WebSocketHandlerRegistry registry) { registry.addHandler(new MyWebSocketHandler(), "/websocket").addInterceptors(new MyHandshakeInterceptor()); } } ``` 2.创建WebSocket处理器 ```java public class MyWebSocketHandler extends TextWebSocketHandler { private static final List<WebSocketSession> sessions = new CopyOnWriteArrayList<>(); @Override public void afterConnectionEstablished(WebSocketSession session) throws Exception { sessions.add(session); } @Override protected void handleTextMessage(WebSocketSession session, TextMessage message) throws Exception { for (WebSocketSession s : sessions) { s.sendMessage(message); } } @Override public void afterConnectionClosed(WebSocketSession session, CloseStatus status) throws Exception { sessions.remove(session); } } ``` 3.创建握手拦截器 ```java public class MyHandshakeInterceptor implements HandshakeInterceptor { @Override public boolean beforeHandshake(ServerHttpRequest request, ServerHttpResponse response, WebSocketHandler wsHandler, Map<String, Object> attributes) throws Exception { return true; } @Override public void afterHandshake(ServerHttpRequest request, ServerHttpResponse response, WebSocketHandler wsHandler, Exception exception) { } } ``` 4.在页面中使用JavaScript连接WebSocket ```javascript var socket = new WebSocket("ws://localhost:8080/websocket"); socket.onmessage = function(event) { console.log(event.data); }; ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小白

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值