import cn.hutool.json.JSONUtil; import org.springframework.stereotype.Component; import javax.websocket.OnClose; import javax.websocket.OnMessage; import javax.websocket.OnOpen; import javax.websocket.Session; import javax.websocket.server.PathParam; import javax.websocket.server.ServerEndpoint; import java.io.IOException; import java.util.concurrent.ConcurrentHashMap; @ServerEndpoint(value = "/websocket/{userId}") @Component public class WebSocket { private static ConcurrentHashMap<String, WebSocket> webSocketMap = new ConcurrentHashMap<>(); //实例一个session,这个session是websocket的session private Session session; //新增一个方法用于主动向客户端发送消息 public static void sendMessage(Object message, String userId) { WebSocket webSocket = webSocketMap.get(userId); if (webSocket != null) { try { webSocket.session.getBasicRemote().sendText(JSONUtil.toJsonStr(message)); System.out.println("【websocket消息】发送消息成功,用户="+userId+",消息内容"+message.toString()); } catch (IOException e) { e.printStackTrace(); } } } public static ConcurrentHashMap<String, WebSocket> getWebSocketMap() { return webSocketMap; } public static void setWebSocketMap(ConcurrentHashMap<String, WebSocket> webSocketMap) { WebSocket.webSocketMap = webSocketMap; } //前端请求时一个websocket时 @OnOpen public void onOpen(Session session, @PathParam("userId") String userId) { this.session = session; webSocketMap.put(userId, this); sendMessage("CONNECT_SUCCESS", userId); System.out.println("【websocket消息】有新的连接,连接id"+userId); } //前端关闭时一个websocket时 @OnClose public void onClose(@PathParam("userId") String userId) { webSocketMap.remove(userId); System.out.println("【websocket消息】连接断开,总数:"+ webSocketMap.size()); } //前端向后端发送消息 @OnMessage public void onMessage(String message, @PathParam("userId") String userId) { if (!message.equals("ping")) { System.out.println("【websocket消息】收到客户端发来的消息:"+message); sendMessage("你说的是:“" + message + "”", userId); } } }
import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.web.socket.server.standard.ServerEndpointExporter; //开启WebSocket的支持,并把该类注入到spring容器中 @Configuration public class WebSocketConfig { @Bean public ServerEndpointExporter serverEndpointExporter() { return new ServerEndpointExporter(); } }
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>本地websocket测试</title> <meta name="robots" content="all" /> <meta name="keywords" content="本地,websocket,测试工具" /> <meta name="description" content="本地,websocket,测试工具" /> <style> .btn-group{ display: inline-block; } </style> </head> <body> <input type='text' value='ws://localhost:4026/websocket/1' class="form-control" style='width:390px;display:inline' id='wsaddr' /> <div class="btn-group" > <button type="button" class="btn btn-default" onclick='addsocket();'>连接</button> <button type="button" class="btn btn-default" onclick='closesocket();'>断开</button> <button type="button" class="btn btn-default" onclick='$("#wsaddr").val("")'>清空</button> </div> <div class="row"> <div id="output" style="border:1px solid #ccc;height:365px;overflow: auto;margin: 20px 0;"></div> <input type="text" id='message' class="form-control" style='width:810px' placeholder="待发信息" onkeydown="en(event);"> <span class="input-group-btn"> <button class="btn btn-default" type="button" onclick="doSend();">发送</button> </span> </div> </body> <script src="jquery.min.js"></script> <script type="text/javascript"> function formatDate(now) { var year = now.getFullYear(); var month = now.getMonth() + 1; var date = now.getDate(); var hour = now.getHours(); var minute = now.getMinutes(); var second = now.getSeconds(); return year + "-" + (month = month < 10 ? ("0" + month) : month) + "-" + (date = date < 10 ? ("0" + date) : date) + " " + (hour = hour < 10 ? ("0" + hour) : hour) + ":" + (minute = minute < 10 ? ("0" + minute) : minute) + ":" + ( second = second < 10 ? ("0" + second) : second); } var output; var websocket; // function init() { // output = document.getElementById("output"); // testWebSocket(); // } function addsocket() { var wsaddr = $("#wsaddr").val(); if (wsaddr == '') { alert("请填写websocket的地址"); return false; } StartWebSocket(wsaddr); } function closesocket() { websocket.close(); } function StartWebSocket(wsUri) { websocket = new WebSocket(wsUri); websocket.onopen = function(evt) { onOpen(evt) }; websocket.onclose = function(evt) { onClose(evt) }; websocket.onmessage = function(evt) { onMessage(evt) }; websocket.onerror = function(evt) { one rror(evt) }; } function onOpen(evt) { writeToScreen("<span style='color:red'>连接成功,现在你可以发送信息啦!!!</span>"); } function onClose(evt) { writeToScreen("<span style='color:red'>websocket连接已断开!!!</span>"); websocket.close(); } function onMessage(evt) { writeToScreen('<span style="color:blue">服务端回应 ' + formatDate(new Date()) + '</span><br/><span class="bubble">' + evt.data + '</span>'); } function one rror(evt) { console.log(evt) writeToScreen('<span style="color: red;">发生错误:</span> ' + evt.data); } function doSend() { var message = $("#message").val(); if (message == '') { alert("请先填写发送信息"); $("#message").focus(); return false; } if (typeof websocket === "undefined") { alert("websocket还没有连接,或者连接失败,请检测"); return false; } if (websocket.readyState == 3) { alert("websocket已经关闭,请重新连接"); return false; } console.log(websocket); $("#message").val(''); writeToScreen('<span style="color:green">你发送的信息 ' + formatDate(new Date()) + '</span><br/>' + message); websocket.send(message); } function writeToScreen(message) { var div = "<div class='newmessage'>" + message + "</div>"; var d = $("#output"); var d = d[0]; var doScroll = d.scrollTop == d.scrollHeight - d.clientHeight; $("#output").append(div); if (doScroll) { d.scrollTop = d.scrollHeight - d.clientHeight; } } function en(event) { var evt = evt ? evt : (window.event ? window.event : null); if (evt.keyCode == 13) { doSend() } } </script> </html>
标签:function,websocket,示例,前后,userId,var,WebSocket,message,evt From: https://www.cnblogs.com/wxxwjef/p/18283064