Vue+Java 通过websocket实现服务器与客户端双向通信操作


Posted in Javascript onSeptember 22, 2020

1. vue代码

methods: {
 //在方法里调用 this.websocketsend()发送数据给服务器
  onConfirm () {
   //需要传输的数据
    let data = {
     code: 1,
     item: ‘传输的数据'
    }
    this.websocketsend(JSON.stringify(data))
  },
  /*
  */
  initWebSocket () { // 初始化weosocket
   let userinfo = getUserInfo()
   let username = userinfo.waiter_userid
   this.websock = new WebSocket('ws://' + baseURL + '/websocket/' + username)

   this.websock.onmessage = this.websocketonmessage
   this.websock.onerror = this.websocketonerror
   this.websock.onopen = this.websocketonopen
   this.websock.onclose = this.websocketclose
  },
  websocketonopen () { // 连接建立之后执行send方法发送数据
   let data = {
    code: 0,
    msg: '这是client:初次连接'
   }
   this.websocketsend(JSON.stringify(data))
  },
  websocketonerror () { 
   console.log( 'WebSocket连接失败')
  },
  websocketonmessage (e) { // 数据接收
   console.log('数据接收' + e.data)
  },
  websocketsend (Data) { // 数据发送
   this.websock.send(Data)
  },
  websocketclose (e) { // 关闭
   console.log('已关闭连接', e)
  }
 },
 created () {
  console.log('created')
  this.initWebSocket()
 },
 data () {
  return {
   websocket: null
  }
 },
 destroyed () {
  this.websock.close() // 离开路由之后断开websocket连接
 }

2. java代码

项目引入tomcat安装目录里的两个依赖包

Vue+Java 通过websocket实现服务器与客户端双向通信操作

package diancan.servlet;

import java.io.IOException;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

import javax.websocket.OnClose;
import javax.websocket.OnError;
import javax.websocket.OnMessage;
import javax.websocket.OnOpen;
import javax.websocket.Session;
import javax.websocket.server.PathParam;
import javax.websocket.server.ServerEndpoint;

@ServerEndpoint("/websocket/{username}")
public class WebSocket {

  private static int onlineCount = 0;
  private static Map<String, WebSocket> clients = new ConcurrentHashMap<String, WebSocket>();
  private Session session;
  private String username;

  @OnOpen
  public void onOpen(@PathParam("username") String username, Session session) throws IOException {
  this.username = username;
  this.session = session;

  addOnlineCount();
  clients.put(username, this);
  System.out.println("已连接" + username);
  }

  @OnClose
  public void onClose() throws IOException {
  clients.remove(username);
  subOnlineCount();
  }

  @OnMessage
  public void onMessage(String message) throws IOException {
  DataWrapper res = new DataWrapper();
  System.out.println("message:" + message);
  JSONObject req = JSONObject.parseObject(message);
// System.out.println("item:" + req.getJSONObject("item"));
// System.out.println("item:" + req.getInteger("code"));

  // 发送数据给服务端
  sendMessageAll(JSON.toJSONString(res));
  }

  @OnError
  public void onError(Session session, Throwable error) {
  error.printStackTrace();
  }

  public void sendMessageTo(String message, String To) throws IOException {
  // session.getBasicRemote().sendText(message);
  // session.getAsyncRemote().sendText(message);
  for (WebSocket item : clients.values()) {
   if (item.username.equals(To))
   item.session.getAsyncRemote().sendText(message);
  }
  }

  public void sendMessageAll(String message) throws IOException {
  for (WebSocket item : clients.values()) {
   item.session.getAsyncRemote().sendText(message);
  }
  }

  public static synchronized int getOnlineCount() {
  return onlineCount;
  }

  public static synchronized void addOnlineCount() {
  WebSocket.onlineCount++;
  }

  public static synchronized void subOnlineCount() {
  WebSocket.onlineCount--;
  }

  public static synchronized Map<String, WebSocket> getClients() {
  return clients;
  }
}

在项目别的类可通过new WebSocket()向客户端发送数据

WebSocket ws = new WebSocket();

ws.sendMessageAll(JSON.toJSONString(rs));

以上这篇Vue+Java 通过websocket实现服务器与客户端双向通信操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Javascript 相关文章推荐
使用户点击后退按钮使效三行代码
Jul 07 Javascript
js实现简单模态窗口,背景灰显
Nov 14 Javascript
jquery属性过滤选择器使用示例
Jun 18 Javascript
jquery $.each() 使用小探
Aug 23 Javascript
js生成验证码并直接在前端判断
May 15 Javascript
纯javascript模仿微信打飞机小游戏
Aug 20 Javascript
全面解析Javascript无限添加QQ好友原理
Jun 15 Javascript
js实现的在线调色板功能完整实例
Dec 21 Javascript
Bootstrap模态框插件使用详解
May 11 Javascript
详解Nuxt.js中使用Element-UI填坑
Sep 06 Javascript
详解vue或uni-app的跨域问题解决方案
Feb 21 Javascript
vue项目打包后提交到git上为什么没有dist这个文件的解决方法
Sep 16 Javascript
Vue实现开关按钮拖拽效果
Sep 22 #Javascript
JS如何生成动态列表
Sep 22 #Javascript
vue使用svg文件补充-svg放大缩小操作(使用d3.js)
Sep 22 #Javascript
解决Can't find variable: SockJS vue项目的问题
Sep 22 #Javascript
解决vue-router 嵌套路由没反应的问题
Sep 22 #Javascript
Js跳出两级循环方法代码实例
Sep 22 #Javascript
vue 二维码长按保存和复制内容操作
Sep 22 #Javascript
You might like
Yii2.0使用阿里云OSS的SDK上传图片、下载、删除图片示例
2017/09/20 PHP
js加解密 脚本解密
2008/02/22 Javascript
js window.print实现打印特定控件或内容
2013/09/16 Javascript
js+csss实现的一个带复选框的下拉框
2014/09/29 Javascript
JavaScript替换当前页面的方法
2015/04/03 Javascript
jQuery实现下拉框多选 jquery-multiselect 的实例代码
2016/07/14 Javascript
微信小程序 九宫格实例代码
2017/01/21 Javascript
Bootstarp基本模版学习教程
2017/02/01 Javascript
浅谈javascript的url参数parse和build函数
2017/03/04 Javascript
利用node.js如何搭建一个简易的即时响应服务器
2017/05/28 Javascript
解决bootstrap中下拉菜单点击后不关闭的问题
2018/08/10 Javascript
原生js实现随机点名
2020/07/05 Javascript
Vue 解决在element中使用$notify在提示信息中换行问题
2020/11/11 Javascript
[48:48]VGJ.T vs Liquid 2018国际邀请赛小组赛BO2 第二场 8.19
2018/08/21 DOTA
python写日志封装类实例
2015/06/28 Python
在Django的模板中使用认证数据的方法
2015/07/23 Python
如何实现删除numpy.array中的行或列
2018/05/08 Python
浅谈DataFrame和SparkSql取值误区
2018/06/09 Python
pandas.dataframe按行索引表达式选取方法
2018/10/30 Python
浅谈python的elementtree模块处理中文注意事项
2020/03/06 Python
python实现Oracle查询分组的方法示例
2020/04/30 Python
python 操作mysql数据中fetchone()和fetchall()方式
2020/05/15 Python
Python实现进度条和时间预估的示例代码
2020/06/02 Python
Python建造者模式案例运行原理解析
2020/06/29 Python
python打包多类型文件的操作方法
2020/09/21 Python
丝芙兰法国官网:SEPHORA法国
2016/09/01 全球购物
实习生求职自荐信
2014/02/07 职场文书
校优秀毕业生主要事迹
2014/05/26 职场文书
诚信贷款承诺书
2014/05/30 职场文书
邻里守望志愿服务活动方案
2014/08/15 职场文书
乡镇法制宣传日活动总结
2015/05/05 职场文书
雷锋之歌观后感
2015/06/10 职场文书
2016党员三严三实心得体会
2016/01/15 职场文书
读《皮囊》有感:理解是对他人的最大的善举
2019/11/14 职场文书
Python 类,对象,数据分类,函数参数传递详解
2021/09/25 Python
python读取mat文件生成h5文件的实现
2022/07/15 Python