实时消息推送系统,写得太好了!

websocket 协议是在 http 协议上的一种补充协议,是 html5 的新特性,是一种持久化的协议。其实 websocket 和 http 关系并不是很大,不过都是属于应用层的协议,接下来我们就开始实战。

websocket 定时推送

本教程基于 springboot 为脚手架,没使用过 springboot 同学可以看往期文章,或者直接去 spring 官网拉一个 springboot 基础项目下来。

加入依赖

在 springboot 的项目中添加一下 webSocket 依赖,一般一项新技术的引入在 springboot 中也只是引用一个此技术 starter 的依赖,其他配置基本 springboot 帮我们解决了。

 
  1. <dependency>

  2. <groupId>org.springframework.boot</groupId>

  3. <artifactId>spring-boot-starter-websocket</artifactId>

  4. </dependency>

配置

新建一个 Java 配置类,注入 ServerEndpointExporter 配置,如果是使用 springboot 内置的 tomcat 此配置必须,如果是使用的是外部 tomcat 容器此步骤请忽略。看 spring 源码中这样描述,使用此配置可以关闭 servlet 容器对 websocket 端点的扫描,这个暂时没有深入研究。

 
  1. @Configuration

  2. public class WebSocketConfig {

  3. @Bean

  4. public ServerEndpointExporter serverEndpointExporter() {

  5. return new ServerEndpointExporter();

  6. }

  7. }

核心代码

接下来最核心的类其实就是提供一个前后端交互的类实现消息的接收推送。

  • @ServerEndpoint(value = "/wsdemo") 前端通过此 URI 和后端交互,建立连接

  • @Component 不用说将此类交给 spring 管理

  • @OnOpen websocket 建立连接的注解,前端触发上面 URI 时会进入此注解标注的方法,和之前关于 DWR 文章中的 onpage 方法类似

  • @OnClose 顾名思义关闭连接,销毁 session

  • @OnMessage 收到前端传来的消息后执行的方法

 
  1. @ServerEndpoint(value = "/wsdemo")

  2. @Component

  3. public class MyWebSocket {

  4. private static int onlineCount = 0;

  5. private static CopyOnWriteArraySet<MyWebSocket> webSocketSet = new CopyOnWriteArraySet<MyWebSocket>();

  6. private Session session;

  7. @OnOpen

  8. public void onOpen(Session session) {

  9. this.session = session;

  10. webSocketSet.add(this);

  11. addOnlineCount();

  12. System.out.println("有新连接加入!当前在线人数为" + getOnlineCount());

  13. try {

  14. sendMessage("连接已建立成功.");

  15. } catch (Exception e) {

  16. System.out.println("IO异常");

  17. }

  18. }

  19. @OnClose

  20. public void onClose() {

  21. webSocketSet.remove(this);

  22. subOnlineCount();

  23. System.out.println("有一连接关闭!当前在线人数为" + getOnlineCount());

  24. }

  25. @OnMessage

  26. public void onMessage(String message, Session session) {

  27. System.out.println("来自客户端的消息:" + message);

  28. }

  29. @OnError

  30. public void onError(Session session, Throwable error) {

  31. System.out.println("发生错误");

  32. error.printStackTrace();

  33. }

  34. public void sendMessage(String message) throws IOException {

  35. this.session.getBasicRemote().sendText(message);

  36. }

  37. public static synchronized int getOnlineCount() {

  38. return onlineCount;

  39. }

  40. public static synchronized void addOnlineCount() {

  41. MyWebSocket.onlineCount++;

  42. }

  43. public static synchronized void subOnlineCount() {

  44. MyWebSocket.onlineCount--;

  45. }

  46. public Session getSession() {

  47. return session;

  48. }

  49. public void setSession(Session session) {

  50. this.session = session;

  51. }

  52. public static CopyOnWriteArraySet<MyWebSocket> getWebSocketSet() {

  53. return webSocketSet;

  54. }

  55. public static void setWebSocketSet(CopyOnWriteArraySet<MyWebSocket> webSocketSet) {

  56. MyWebSocket.webSocketSet = webSocketSet;

  57. }

  58. }

定时任务

使用 spring 的 Schedule 建立定时任务

  • @EnableScheduling 开启 spring 定时任务功能

  • @Scheduled(cron = "0/10 * * * * ?") 用于标识定时执行的方法,此处主要方法返回值一定是 void,没有入参。对应定时时间配置可以百度 cron 语法,根据自己的业务选择合适的周期
    在这类中,我们通过上面 MyWebSocket 提供的静态方法获取其中的 webSocketSet ,来获取所有此业务相关的所有 websocketsession,可以在定时任务中对 session 内容进行验证判断(权限验证等),进行发送消息

 
  1. @Component

  2. @EnableScheduling

  3. public class TimeTask

  4. {

  5. private static Logger logger = LoggerFactory.getLogger(TimeTask.class);

  6. @Scheduled(cron = "0/1 * * * * ?")

  7. public void test(){

  8. System.err.println("********* 定时任务执行 **************");

  9. CopyOnWriteArraySet<MyWebSocket> webSocketSet =

  10. MyWebSocket.getWebSocketSet();

  11. int i = 0 ;

  12. webSocketSet.forEach(c->{

  13. try {

  14. c.sendMessage(" 定时发送 " + new Date().toLocaleString());

  15. } catch (IOException e) {

  16. e.printStackTrace();

  17. }

  18. });

  19. System.err.println("/n 定时任务完成.......");

  20. }

  21. }

前端页面

前端页面可以参考使用,主要要更改调用的 url 为自己项目 URL

 
  1. <!DOCTYPE HTML>

  2. <html>

  3. <head>

  4. <title>My WebSocket</title>

  5. </head>

  6. <body>

  7. Welcome<br/>

  8. <input type="text" /><button onclick="send()">Send</button> <button onclick="closeWebSocket()">Close</button>

  9. <div>

  10. </div>

  11. </body>

  12. <script type="text/javascript">

  13. var websocket = null;

  14. //判断当前浏览器是否支持WebSocket ,主要此处要更换为自己的地址

  15. if('WebSocket' in window){

  16. websocket = new WebSocket("ws://localhost:8886/wsdemo");

  17. }

  18. else{

  19. alert('Not support websocket')

  20. }

  21. //连接发生错误的回调方法

  22. websocket.onerror = function(){

  23. setMessageInnerHTML("error");

  24. };

  25. //连接成功建立的回调方法

  26. websocket.onopen = function(event){

  27. setMessageInnerHTML("open");

  28. }

  29. //接收到消息的回调方法

  30. websocket.onmessage = function(event){

  31. setMessageInnerHTML(event.data);

  32. }

  33. //连接关闭的回调方法

  34. websocket.onclose = function(){

  35. setMessageInnerHTML("close");

  36. }

  37. //监听窗口关闭事件,当窗口关闭时,主动去关闭websocket连接,防止连接还没断开就关闭窗口,server端会抛异常。

  38. window.onbeforeunload = function(){

  39. websocket.close();

  40. }

  41. //将消息显示在网页上

  42. function setMessageInnerHTML(innerHTML){

  43. document.getElementById('message').innerHTML += innerHTML + '<br/>';

  44. }

  45. //关闭连接

  46. function closeWebSocket(){

  47. websocket.close();

  48. }

  49. //发送消息

  50. function send(){

  51. var message = document.getElementById('text').value;

  52. websocket.send(message);

  53. }

  54. </script>

  55. </html>

效果演示

 
 

最后说一句(求关注!别白嫖!)

如果这篇文章对您有所帮助,或者有所启发的话,求一键三连:点赞、转发、在看。

关注公众号:woniuxgg,在公众号中回复:笔记  就可以获得蜗牛为你精心准备的java实战语雀笔记,回复面试、开发手册、有超赞的粉丝福利!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值