|
1.websocket介绍
WebSocket协议是基于TCP的一种新的网络协议。它实现了浏览器与服务器全双工(full-duplex)通信——允许服务器主动发送信息给客户端。websocket 协议是在 http 协议上的一种补充协议,是 html5 的新特性,是一种持久化的协议。
2.应用场景
3.spring boot 整合(亲测有效)
(1)导入pom-
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-websocket</artifactId>
- </dependency>
复制代码 (2)websocket配置类:- package com.ruoyi.framework.config.websocked;
- 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();
- }
- }
复制代码作用:可以将带有 @ServerEndpoint 注解的 WebSocket 端点注册到应用程序中,以便能够处理 WebSocket 连接。
(3)websocket操作类:说明
- (1)@ServerEndpoint(“/websocket/{userId}”) 前端通过此 URI 和后端交互,建立连接
- (2)@Component 不用说将此类交给 spring 管理
- (3)@OnOpen websocket 建立连接的注解,前端触发上面 URI 时会进入此注解标注的方法
- (4)@OnMessage 收到前端传来的消息后执行的方法
- (5)@OnClose 顾名思义关闭连接,销毁 session
(4)前端样例:
- var userId = "your_user_id"; // 替换为实际的用户 ID
- var socket = new WebSocket("ws://your_server_address/websocket/" + userId);
- socket.onopen = function(event) {
- // WebSocket 连接已打开
- };
- socket.onmessage = function(event) {
- // 收到来自服务器的消息
- var message = event.data;
- console.log("Received message: " + message);
- };
- socket.onclose = function(event) {
- // WebSocket 连接已关闭
- };
复制代码 (5)前端demo:- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>websocket通讯</title>
- </head>
- <body>
- <p>【socket开启者的ID信息】:<input id="userId" name="userId" type="text" value="10">
- <p>【客户端向服务器发送的内容】:<input id="toUserId" name="toUserId" type="text" value="20">
- <input id="contentText" name="contentText" type="text" value="hello websocket">
- <p>【操作】:<button><a onclick="openSocket()">开启socket</a></button>
- <p>【操作】:<button><a onclick="sendMessage()">发送消息</a></button>
- <p>【操作】:<button><a onclick="getMessage()">获取后台广播消息</a></button>
- </body>
- </html>
复制代码 (6)效果图:
(7)通过后端接口发送消息到客户端,客户端成功接收:
代码如下
- package com.ruoyi.project.websorcked;
- import com.ruoyi.framework.web.domain.AjaxResult;
- import io.swagger.annotations.Api;
- import io.swagger.annotations.ApiImplicitParam;
- import io.swagger.annotations.ApiImplicitParams;
- import io.swagger.annotations.ApiOperation;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RequestMethod;
- import org.springframework.web.bind.annotation.RequestParam;
- import org.springframework.web.bind.annotation.RestController;
- @RestController
- @RequestMapping(value = "/api/v1/websocket")
- @Api(tags = "websocket接口", value = "AlarmDpController")
- public class WebSocketController {
- @Autowired
- private WebSocketServer webSocketServer;
- /**
- * 模拟数据发送
- */
- @ApiOperation(value = "模拟数据发送", notes = "模拟数据发送")
- @ApiImplicitParams({
- @ApiImplicitParam(paramType = "query", name = "message", value = "模拟消息", required = true, dataType = "String"),
- })
- @RequestMapping(value = "/sendTestMessage", method = RequestMethod.GET)
- public AjaxResult sendTestMessage(@RequestParam("message")String message) {
- AjaxResult ajaxJson = new AjaxResult();
- try {
- webSocketServer.sendAllMessage(message);
- } catch (Exception e) {
- e.printStackTrace();
- // return AjaxJson.returnExceptionInfo(LoitStatusMsg.LOIT_USER_LOGIN_FAIL);
- }
- return ajaxJson;
- }
- }
复制代码 4.遇到的问题
(1) websocket发送连接请求到服务端,报错Filed
解决如下,因为我使用的是若依的项目,使用的安全框架为shiro,在shiro的config类中添加白名单放行
来源:https://www.cnblogs.com/sy2022/p/17611638.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作! |
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有账号?立即注册
x
|