今天闲来无事,就来了解一下WebSocket协议。来简单了解一下吧。

  首先了解一下WebSocket是什么?WebSocket是一种在单个TCP连接上进行全双工通信的协议。这是一种比较官方的说法,简单点来说就是,在一次TCP连接中,通信的双方可以相互通信。比如A和B在打电话,A说话的时候,B也可以说话来进行信息的交互,这就叫做全双工通信。对应的是单工通信,和半双工通信,单工通信就是只能由A向B通信,比如电脑和打印机。半双工通信是可以AB可以互相通信,但是同一时间只能进行单向通信,比如对讲机。

WebSocket与http的关系

  都建立在TCP之上,通过TCP协议来传输数据。

  HTTP协议为单向协议,即浏览器只能向服务器请求资源,服务器才能将数据传送给浏览器,而服务器不能主动向浏览器传递数据。分为长连接和短连接,短连接是每次http请求时都需要三次握手才能发送自己的请求,每个request对应一个response;长连接是短时间内保持连接,保持TCP不断开,指的是TCP连接。

  WebSocket一种双向通信协议,在建立连接后,WebSocket服务器和客户端都能主动的向对方发送或接收数据,就像Socket一样,不同的是WebSocket是一种建立在Web基础上的一种简单模拟Socket的协议;WebSocket需要通过握手连接,类似于TCP它也需要客户端和服务器端进行握手连接,连接成功后才能相互通信。WebSocket在建立握手连接时,数据是通过http协议传输的,“GET/chat HTTP/1.1”,这里面用到的只是http协议一些简单的字段。但是在建立连接之后,真正的数据传输阶段是不需要http协议参与的。

  WebSocket解决客户端发起多个http请求到服务器资源浏览器必须要经过长时间的轮询问题。

  1. 引入WebSocket的jar包

Gradle:

  1. compile group: \'org.springframework.boot\', name: \'spring-boot-starter-websocket\', version: \'2.1.8.RELEASE\'

Maven:

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-websocket</artifactId>
  4. <version>2.1.8.RELEASE</version>
  5. </dependency>
  1. 添加对WebSocket的支持

  注入ServerEndpointExporter,这个bean会自动注册使用了@ServerEndpoint注解声明的Websocket endpoint。

  1. import org.springframework.context.annotation.Bean;
  2. import org.springframework.context.annotation.Configuration;
  3. import org.springframework.web.socket.server.standard.ServerEndpointExporter;
  4. /**
  5. * @author: zp
  6. * @Date: 2019-09-18 10:03
  7. * @Description:
  8. */
  9. @Configuration
  10. public class AppConfiguration {
  11. @Bean
  12. public ServerEndpointExporter serverEndpointExporter(){
  13. return new ServerEndpointExporter();
  14. }
  15. }
  1. 创建WebSocket的实现类

  @ServerEndpoint(“/webSocket/{page}”)中的值就是需要访问的地址,和Controller中的@RequestMapping有点类似。然后实现@OnOpen(打开连接),@OnClose(关闭连接),@onMessage(收到消息),@Error(触发异常)。

  1. import org.slf4j.Logger;
  2. import org.slf4j.LoggerFactory;
  3. import org.springframework.stereotype.Component;
  4. import javax.websocket.*;
  5. import javax.websocket.server.PathParam;
  6. import javax.websocket.server.ServerEndpoint;
  7. import java.io.IOException;
  8. import java.util.Map;
  9. import java.util.Set;
  10. import java.util.concurrent.ConcurrentHashMap;
  11. import java.util.concurrent.CopyOnWriteArraySet;
  12. import java.util.concurrent.atomic.AtomicInteger;
  13. /**
  14. * @author: zp
  15. * @Date: 2019-09-20 15:12
  16. * @Description:
  17. */
  18. @Component
  19. @ServerEndpoint("/webSocket/{page}")
  20. public class WebSocket {
  21. private Logger log = LoggerFactory.getLogger(this.getClass());
  22. /**
  23. * 用来记录房间的人数
  24. */
  25. private static AtomicInteger onlinePersons = new AtomicInteger(0);
  26. /**
  27. * 用来记录房间及人数
  28. */
  29. private static Map<String,Set> roomMap = new ConcurrentHashMap(8);
  30. @OnOpen
  31. public void open(@PathParam("page") String page, Session session) throws IOException {
  32. Set set = roomMap.get(page);
  33. // 如果是新的房间,则创建一个映射,如果房间已存在,则把用户放进去
  34. if(set == null){
  35. set = new CopyOnWriteArraySet();
  36. set.add(session);
  37. roomMap.put(page,set);
  38. }else{
  39. set.add(session);
  40. }
  41. // 房间人数+1
  42. onlinePersons.incrementAndGet();
  43. log.info("新用户{}进入聊天,房间人数:{}",session.getId(),onlinePersons);
  44. }
  45. @OnClose
  46. public void close(@PathParam("page") String page, Session session){
  47. // 如果某个用户离开了,就移除相应的信息
  48. if(roomMap.containsKey(page)){
  49. roomMap.get(page).remove(session);
  50. }
  51. // 房间人数-1
  52. onlinePersons.decrementAndGet();
  53. log.info("用户{}退出聊天,房间人数:{}",session.getId(),onlinePersons);
  54. }
  55. @OnMessage
  56. public void reveiveMessage(@PathParam("page") String page, Session session,String message) throws IOException {
  57. log.info("接受到用户{}的数据:{}",session.getId(),message);
  58. // 拼接一下用户信息
  59. String msg = session.getId()+" : "+ message;
  60. Set<Session> sessions = roomMap.get(page);
  61. // 给房间内所有用户推送信息
  62. for(Session s : sessions){
  63. s.getBasicRemote().sendText(msg);
  64. }
  65. }
  66. @OnError
  67. public void error(Throwable throwable){
  68. try {
  69. throw throwable;
  70. } catch (Throwable e) {
  71. log.error("未知错误");
  72. }
  73. }
  74. }

  前端有点菜,写不出好看的ui,见谅~

  1. <html>
  2. <head>
  3. <meta charset="UTF-8"></meta>
  4. <title>springboot项目WebSocket测试demo</title>
  5. </head>
  6. <body>
  7. <h3>springboot项目websocket测试demo</h3>
  8. <h4>测试说明</h4>
  9. <h5>文本框中数据数据,点击‘发送测试’,文本框中的数据会发送到后台websocket,后台接受到之后,会再推送数据到前端,展示在下方;点击关闭连接,可以关闭该websocket;可以跟踪代码,了解具体的流程;代码上有详细注解</h5>
  10. <br />
  11. <input id="text" type="text" />
  12. <button onclick="send()">发送测试</button>
  13. <hr />
  14. <button onclick="clos()">关闭连接</button>
  15. <hr />
  16. <div id="message"></div>
  17. <script>
  18. var websocket = null;
  19. if(\'WebSocket\' in window){
  20. websocket = new WebSocket("ws://127.0.0.1:9999/webSocket/1");
  21. }else{
  22. alert("您的浏览器不支持websocket");
  23. }
  24. websocket.onerror = function(){
  25. setMessageInHtml("send error!");
  26. }
  27. websocket.onopen = function(){
  28. setMessageInHtml("连接成功!")
  29. setTimeout(function(){setMessageInHtml("欢迎来到这里!")
  30. },2000)
  31. }
  32. websocket.onmessage = e => setMessageInHtml(e.data)
  33. websocket.onclose = function(){
  34. setMessageInHtml("连接断开!")
  35. }
  36. window.onbeforeunload = function(){
  37. clos();
  38. }
  39. function setMessageInHtml(message){
  40. document.getElementById(\'message\').innerHTML += message+"</br>";
  41. }
  42. function clos(){
  43. websocket.close(3000,"强制关闭");
  44. }
  45. function send(){
  46. var msg = document.getElementById(\'text\').value;
  47. websocket.send(msg);
  48. }
  49. </script>
  50. </body>
  51. </html>

file

  希望我们每天都有一点小收获~

file

如果觉得有用就关注我吧~

版权声明:本文为menmenz原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/menmenz/p/11647822.html