2017-12-22

Java SpringBoot下的WebSocket

前面我们已经讲了如何搭建一个SpringBoot的Web框架,那么搭完了框架总要搞点事情吧,今天咱们就来做一个基于SpringBoot的简易聊天室。

聊天

WebSocket简介

工欲善其事必先利其器,我们先来讲一下什么是WebScoket。WebSocket协议是基于TCP的一种新的网络协议。它实现了浏览器与服务器全双工(full-duplex)通信——允许服务器主动发送信息给客户端。,也就是说我们可以利用浏览器给服务器发送消息,服务器也可以给浏览器发送消息,目前的主流浏览器对WebSocket的支持都还不错,但是在实际开发中使用WebSocket工作量会很大,并且还有对浏览器的兼容问题,所以这个时候我们更多的是使用WebSocket的一个子协议stomp,利用它来快速实现我们的功能。

环境

我们做的建议公共聊天室需要在SpringBoot的POM文件中添加两个依赖,不知道怎么搭建SpringBoot的朋友可以看下我前面发的SpringBoot搭建的方法。

需要的maven依赖:

<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-websocket</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency>

开始撸代码

搭建完了基本的开发环境之后我们来写代码,首先我们先写一个关于WebSocket的节点以及模式的配置类,代码里有详细的注解。

package com.guanglan.config; import org.springframework.context.annotation.Configuration; import org.springframework.messaging.simp.config.MessageBrokerRegistry; import org.springframework.web.socket.config.annotation.AbstractWebSocketMessageBrokerConfigurer; import org.springframework.web.socket.config.annotation.EnableWebSocketMessageBroker; import org.springframework.web.socket.config.annotation.StompEndpointRegistry; /** * Created by GuangLan on 2017/12/21. */ @Configuration //配置注解 @EnableWebSocketMessageBroker //@EnableWebSocketMessageBroker注解表示开启使用STOMP协议来传输基于代理的消息,Broker就是代理的意思。 public class WebSocketConfig extends AbstractWebSocketMessageBrokerConfigurer { /** * configureMessageBroker用来配置消息代理模式,我们做的是公共聊天室所以用topic即可 * @param config */ @Override public void configureMessageBroker(MessageBrokerRegistry config) { config.enableSimpleBroker("/topic"); } /** * registerStompEndpoints方法表示注册STOMP协议的节点,并指定映射的URL的位置 * @param stompEndpointRegistry */ @Override public void registerStompEndpoints(StompEndpointRegistry stompEndpointRegistry) { //stompEndpointRegistry.addEndpoint("/MyWebsocket").withSockJS(); // 的意思就是注册STOMP协议节点,并且使用SockJS协议。 stompEndpointRegistry.addEndpoint("MyWebsocket").withSockJS(); } }

接下来我们要建立两个实体类,一个是接收客户端发来的消息类,一个是返回消息的类。

返回消息类:

package com.guanglan.entry; /** * 返回消息类 * Created by GuangLan on 2017/12/21. */ public class ResponseMessage { private String name; //消息发送者 private String message; //消息内容 private String dateTime; //发送时间 public ResponseMessage(String name, String message,String dateTime){ this.name = name; this.message = message; this.dateTime = dateTime; } public String getResponseMessage(){ return "发送时间 : "+dateTime+"\n"+name+" : "+message+" "; } }

接收消息类:

package com.guanglan.entry; /** * 接收消息类 * Created by GuangLan on 2017/12/21. */ public class RequestMessage { private String name; //消息发送者 private String message; //消息内容 public String getName() { return name; } public void setName(String name) { this.name = name; } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } }

接下来,我们建立接收消息和发送消息的控制类:

package com.guanglan.controller; import com.guanglan.entry.RequestMessage; import com.guanglan.entry.ResponseMessage; import org.springframework.messaging.handler.annotation.MessageMapping; import org.springframework.messaging.handler.annotation.SendTo; import org.springframework.stereotype.Controller; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; /** * Created by GuangLan on 2017/12/21. */ @Controller public class WebSocketController { @MessageMapping("/guanglan") //客户端请求的地址 @SendTo("/topic/getResponse") //返回给客户端消息的地址 public ResponseMessage responseMessage(RequestMessage message) { //获取当前时间 LocalDateTime localDateTime = LocalDateTime.now(); DateTimeFormatter format = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"); //将从服务端接受的信息返回到页面上 return new ResponseMessage(message.getName(),message.getMessage(),localDateTime.format(format)); } }

这样主体流程就差不多了,我们在templates中建立一个名字为websocket的html5文件,并写入以下内容:

<html lang="en" xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8"/> <title>公共聊天室WebSocket</title> <link href="https://cdn.bootcss.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"/> <script src="https://cdn.bootcss.com/sockjs-client/1.1.4/sockjs.min.js"></script> <script src="https://cdn.bootcss.com/stomp.js/2.3.3/stomp.min.js"></script> <script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.slim.min.js"></script> <script src="https://cdn.bootcss.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> </head> <body onload="disconnect()"> <noscript><h2 style="color: #e80b0a;">Sorry,浏览器不支持WebSocket</h2></noscript> <div> <div> <button id="connect" onclick="connect();" class="btn btn-success" style="width: 200px;height:60px;">连接</button> <button id="disconnect" disabled="disabled" onclick="disconnect();" class="btn btn-danger" style="width: 200px;height:60px;">断开</button> </div> <div id="conversationDiv"> <div class="form-group"> <label for="name">姓名</label> <input type="text" id="name" class="form-control" placeholder="输入你的名字" style="width: 500px;"/> </div> <div class="form-group"> <textarea id="message" class="form-control" rows="3" style="width: 500px;"> </textarea> </div> <button type="button" class="btn btn-info" id="sendName" onclick="sendName();">发送</button> <br/> <div class="form-group"> <p id="response"></p> </div> </div> </div> <script type="text/javascript"> var stompClient = null; function setConnected(connected) { document.getElementById("connect").disabled = connected; document.getElementById("disconnect").disabled = !connected; document.getElementById("conversationDiv").style.visibility = connected ? 'visible' : 'hidden'; $("#response").html(); } function connect() { var socket = new SockJS('/MyWebsocket'); stompClient = Stomp.over(socket); stompClient.connect({}, function (frame) { setConnected(true); stompClient.subscribe('/topic/getResponse', function (response) { showResponse(JSON.parse(response.body).responseMessage); }) }); } function disconnect() { if (stompClient != null) { stompClient.disconnect(); } setConnected(false); } function sendName() { var name = $('#name').val(); var message = $('#message').val(); stompClient.send("/guanglan", {}, JSON.stringify({'name': name,'message':message})); } function showResponse(message) { $("#response").append("<br/>"+message); } </script> </body> </html>

马上就要大功告成了,不要气馁哦,我们在建立一个映射HTML5文件的类就OK了:

package com.guanglan.config; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.ViewControllerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; /** * Created by GuangLan on 2017/12/21. */ @Configuration public class WebMvcConfig extends WebMvcConfigurerAdapter { @Override public void addViewControllers(ViewControllerRegistry registry) { //访问路径以及页面文件的名字 registry.addViewController("/websocket").setViewName("/websocket"); } }

这样一个简易的WebSocket聊天室就完成了。

主页面

如果您按照上述地址访问后出现上面的页面那么恭喜您搭建成功了!

下面看看效果吧

效果图

点击链接后会出现聊天室的页面,我在浏览器上建立了三个连接,分别发送了消息,效果如上。

好了,今天的基于SpringBoot的简易公共聊天室就讲到这里,如果您喜欢小编的作品请关注哦!

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,776评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,527评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,361评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,430评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,511评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,544评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,561评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,315评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,763评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,070评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,235评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,911评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,554评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,173评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,424评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,106评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,103评论 2 352

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,647评论 18 139
  • 本文参考了:http://blog.didispace.com/springcloud7/http://blog....
    WeiminSun阅读 7,197评论 0 23
  • spring官方文档:http://docs.spring.io/spring/docs/current/spri...
    牛马风情阅读 1,661评论 0 3
  • Spring Boot 参考指南 介绍 转载自:https://www.gitbook.com/book/qbgb...
    毛宇鹏阅读 46,799评论 6 342
  • 有时候,你是否会觉得迷茫? 觉得世界不是你想要的! 觉得自己明明很努力,却还是摸不到! 觉得自己很专心,却还是败给...
    崎漩阅读 171评论 0 0