简单说明

1.两种方式,一种使用tomcat的websocket实现,一种使用spring的websocket

2.tomcat的方式需要tomcat 7.x,JEE7的支持。

3.spring与websocket整合需要spring 4.x,并且使用了socketjs,对不支持websocket的浏览器可以模拟websocket使用

方式一:tomcat

使用这种方式无需别的任何配置,只需服务端一个处理类,

服务器端代码

package com.Socket;  import java.io.IOException;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import javax.websocket.*;
import javax.websocket.server.PathParam;
import javax.websocket.server.ServerEndpoint;
import net.sf.json.JSONObject;  @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("已连接");  }  @OnClose  public void onClose() throws IOException {  clients.remove(username);  subOnlineCount();  }  @OnMessage  public void onMessage(String message) throws IOException {  JSONObject jsonTo = JSONObject.fromObject(message);  if (!jsonTo.get("To").equals("All")){  sendMessageTo("给一个人", jsonTo.get("To").toString());  }else{  sendMessageAll("给所有人");  }  }  @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;  }
}

客户端js

var websocket = null;
var username = localStorage.getItem("name");  //判断当前浏览器是否支持WebSocket
if ('WebSocket' in window) {  websocket = new WebSocket("ws://" + document.location.host + "/WebChat/websocket/" + username + "/"+ _img);
} else {  alert('当前浏览器 Not support websocket')
}  //连接发生错误的回调方法
websocket.onerror = function() {  setMessageInnerHTML("WebSocket连接发生错误");
};  //连接成功建立的回调方法
websocket.onopen = function() {  setMessageInnerHTML("WebSocket连接成功");
}  //接收到消息的回调方法
websocket.onmessage = function(event) {  setMessageInnerHTML(event.data);
}  //连接关闭的回调方法
websocket.onclose = function() {  setMessageInnerHTML("WebSocket连接关闭");
}  //监听窗口关闭事件,当窗口关闭时,主动去关闭websocket连接,防止连接还没断开就关闭窗口,server端会抛异常。
window.onbeforeunload = function() {  closeWebSocket();
}  //关闭WebSocket连接
function closeWebSocket() {  websocket.close();
}

发送消息只需要使用websocket.send(“发送消息”),就可以触发服务端的onMessage()方法,当连接时,触发服务器端onOpen()方法,此时也可以调用发送消息的方法去发送消息。关闭websocket时,触发服务器端onclose()方法,此时也可以发送消息,但是不能发送给自己,因为自己的已经关闭了连接,但是可以发送给其他人。

方法二:spring整合

此方式基于spring mvc框架,相关配置可以看我的相关博客文章

WebSocketConfig.java

这个类是配置类,所以需要在spring mvc配置文件中加入对这个类的扫描,第一个addHandler是对正常连接的配置,第二个是如果浏览器不支持websocket,使用socketjs模拟websocket的连接。

package com.websocket;  import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.socket.config.annotation.EnableWebSocket;
import org.springframework.web.socket.config.annotation.WebSocketConfigurer;
import org.springframework.web.socket.config.annotation.WebSocketHandlerRegistry;
import org.springframework.web.socket.handler.TextWebSocketHandler;  @Configuration
@EnableWebSocket
public class WebSocketConfig implements WebSocketConfigurer {  @Override  public void registerWebSocketHandlers(WebSocketHandlerRegistry registry) {  registry.addHandler(chatMessageHandler(),"/webSocketServer").addInterceptors(new ChatHandshakeInterceptor());  registry.addHandler(chatMessageHandler(), "/sockjs/webSocketServer").addInterceptors(new ChatHandshakeInterceptor()).withSockJS();  }  @Bean  public TextWebSocketHandler chatMessageHandler(){  return new ChatMessageHandler();  }  }

ChatHandshakeInterceptor.java

这个类的作用就是在连接成功前和成功后增加一些额外的功能,Constants.java类是一个工具类,两个常量。

package com.websocket;  import java.util.Map;
import org.apache.shiro.SecurityUtils;
import org.springframework.http.server.ServerHttpRequest;
import org.springframework.http.server.ServerHttpResponse;
import org.springframework.web.socket.WebSocketHandler;
import org.springframework.web.socket.server.support.HttpSessionHandshakeInterceptor;  public class ChatHandshakeInterceptor extends HttpSessionHandshakeInterceptor {  @Override  public boolean beforeHandshake(ServerHttpRequest request, ServerHttpResponse response, WebSocketHandler wsHandler,  Map<String, Object> attributes) throws Exception {  System.out.println("Before Handshake");  /* * if (request instanceof ServletServerHttpRequest) { * ServletServerHttpRequest servletRequest = (ServletServerHttpRequest) * request; HttpSession session = * servletRequest.getServletRequest().getSession(false); if (session != * null) { //使用userName区分WebSocketHandler,以便定向发送消息 String userName = * (String) session.getAttribute(Constants.SESSION_USERNAME); if * (userName==null) { userName="default-system"; } * attributes.put(Constants.WEBSOCKET_USERNAME,userName); *  * } } */  //使用userName区分WebSocketHandler,以便定向发送消息(使用shiro获取session,或是使用上面的方式)  String userName = (String) SecurityUtils.getSubject().getSession().getAttribute(Constants.SESSION_USERNAME);  if (userName == null) {  userName = "default-system";  }  attributes.put(Constants.WEBSOCKET_USERNAME, userName);  return super.beforeHandshake(request, response, wsHandler, attributes);  }  @Override  public void afterHandshake(ServerHttpRequest request, ServerHttpResponse response, WebSocketHandler wsHandler,  Exception ex) {  System.out.println("After Handshake");  super.afterHandshake(request, response, wsHandler, ex);  }  }

ChatMessageHandler.java

这个类是对消息的一些处理,比如是发给一个人,还是发给所有人,并且前端连接时触发的一些动作

package com.websocket;  import java.io.IOException;
import java.util.ArrayList;
import org.apache.log4j.Logger;
import org.springframework.web.socket.CloseStatus;
import org.springframework.web.socket.TextMessage;
import org.springframework.web.socket.WebSocketSession;
import org.springframework.web.socket.handler.TextWebSocketHandler;  public class ChatMessageHandler extends TextWebSocketHandler {  private static final ArrayList<WebSocketSession> users;// 这个会出现性能问题,最好用Map来存储,key用userid  private static Logger logger = Logger.getLogger(ChatMessageHandler.class);  static {  users = new ArrayList<WebSocketSession>();  }  /** * 连接成功时候,会触发UI上onopen方法 */  @Override  public void afterConnectionEstablished(WebSocketSession session) throws Exception {  System.out.println("connect to the websocket success......");  users.add(session);  // 这块会实现自己业务,比如,当用户登录后,会把离线消息推送给用户  // TextMessage returnMessage = new TextMessage("你将收到的离线");  // session.sendMessage(returnMessage);  }  /** * 在UI在用js调用websocket.send()时候,会调用该方法 */  @Override  protected void handleTextMessage(WebSocketSession session, TextMessage message) throws Exception {  sendMessageToUsers(message);  //super.handleTextMessage(session, message);  }  /** * 给某个用户发送消息 * * @param userName * @param message */  public void sendMessageToUser(String userName, TextMessage message) {  for (WebSocketSession user : users) {  if (user.getAttributes().get(Constants.WEBSOCKET_USERNAME).equals(userName)) {  try {  if (user.isOpen()) {  user.sendMessage(message);  }  } catch (IOException e) {  e.printStackTrace();  }  break;  }  }  }  /** * 给所有在线用户发送消息 * * @param message */  public void sendMessageToUsers(TextMessage message) {  for (WebSocketSession user : users) {  try {  if (user.isOpen()) {  user.sendMessage(message);  }  } catch (IOException e) {  e.printStackTrace();  }  }  }  @Override  public void handleTransportError(WebSocketSession session, Throwable exception) throws Exception {  if (session.isOpen()) {  session.close();  }  logger.debug("websocket connection closed......");  users.remove(session);  }  @Override  public void afterConnectionClosed(WebSocketSession session, CloseStatus closeStatus) throws Exception {  logger.debug("websocket connection closed......");  users.remove(session);  }  @Override  public boolean supportsPartialMessages() {  return false;  }  }

spring-mvc.xml

正常的配置文件,同时需要增加对WebSocketConfig.java类的扫描,并且增加

xmlns:websocket="http://www.springframework.org/schema/websocket"  http://www.springframework.org/schema/websocket   <a target="_blank" href="http://www.springframework.org/schema/websocket/spring-websocket-4.1.xsd">http://www.springframework.org/schema/websocket/spring-websocket-4.1.xsd</a>

客户端

<script type="text/javascript"  src="http://localhost:8080/Bank/js/sockjs-0.3.min.js"></script>  <script>  var websocket;  if ('WebSocket' in window) {  websocket = new WebSocket("ws://" + document.location.host + "/Bank/webSocketServer");  } else if ('MozWebSocket' in window) {  websocket = new MozWebSocket("ws://" + document.location.host + "/Bank/webSocketServer");  } else {  websocket = new SockJS("http://" + document.location.host + "/Bank/sockjs/webSocketServer");  }  websocket.onopen = function(evnt) {};  websocket.onmessage = function(evnt) {  $("#test").html("(<font color='red'>" + evnt.data + "</font>)")  };  websocket.onerror = function(evnt) {};  websocket.onclose = function(evnt) {}  $('#btn').on('click', function() {  if (websocket.readyState == websocket.OPEN) {  var msg = $('#id').val();  //调用后台handleTextMessage方法  websocket.send(msg);  } else {  alert("连接失败!");  }  });  </script>

注意导入socketjs时要使用地址全称,并且连接使用的是http而不是websocket的ws

java 实现websocket的两种方式相关推荐

  1. java的websocket_java 实现websocket的两种方式实例详解

    一.介绍 1.两种方式,一种使用tomcat的websocket实现,一种使用spring的websocket 2.tomcat的方式需要tomcat 7.x,JEE7的支持. 3.spring与we ...

  2. 创建和应用Java包文件的两种方式(转)

    创建和应用Java包文件的两种方式(转) <Java编程艺术>章节选登.作者:高永强 清华大学出版社 (即将出版) 12.1  包--package    ... 12.1.1  包命名规 ...

  3. java制作oracle程序,Java程序操作Oracle两种方式之简单实现

    Java程序操作Oracle两种方式之简单实现 1.通过JDBC-ODBC桥连接Oracle数据库 (1)创建odbc源,在控制面板->管理工具->数据源(odbc)中添加DSN,比如取名 ...

  4. Java 实现抽奖的两种方式

    Java实现抽奖的两种方式 方式一:随机数在哪个区间内返回区间下标 方式二:随机数加入区间点集合排序返回随机数下标 代码示例: ①抽奖入参类型为BigDecimal: package com.cfay ...

  5. Java格式化倒计时的两种方式

    Java格式化倒计时的两种方式 第一种方式 /*** 入参是一个每秒减小1的秒数* 返回一个格式化的时间* * 该方法具有局限性,他在时间大于1个小时的时候,会返回错误的时间* 因为该方法调用了Dat ...

  6. java操作Excel有两种方式 方式1:jxl操作Excel jxl的API

    java操作Excel有两种方式 方式1:jxl操作Excel 方式2:poi操作Excel 下面介绍jxl API: 使用Windows操作系统的朋友对Excel(电子表格)一定不会陌生,但是要使用 ...

  7. java 产生随机数的两种方式,Java产生随机数的两种方式

    Java产生随机数的两种方式 Java产生随机数的两种方式 在java中,我们可以通过两种方式来获取随机数(generating a random number)一种是大家熟悉的java.lang.M ...

  8. Java读取证书的两种方式

    关于证书基础以及创建.查看.删除.导入.导出以及其他功能详解请参照:Java使用keytool创建CA证书 Java读取证书有两种方式 1.从文件中读取 public static void main ...

  9. websocket java 例子_java 实现websocket的两种方式实例详解

    目录 一.介绍 1.两种方式,一种使用tomcat的websocket实现,一种使用spring的websocket 2.tomcat的方式需要tomcat 7.x,JEE7的支持. 3.spring ...

最新文章

  1. Elasticsearch的Shield插件
  2. 排序算法02--冒泡排序
  3. 用链表和数组实现HASH表,几种碰撞冲突解决方法
  4. 29 | 堆的应用:如何快速获取到Top 10最热门的搜索关键词?
  5. 云计算具有什么平台_如何搭建自己的云计算平台?
  6. android编程设备信息,Android获取当前手机设备信息工具类详解
  7. spring自带任务调度-xml方式
  8. C++ 推断进程是否存在
  9. vue slot的使用介绍
  10. Rust: codewars的Sum by Factors
  11. c语言窗口炸弹代码,C语言实现宾果消消乐.pdf
  12. 在Qt下使用映美精黑白相机:Qt 5.12 + ImagingSource(映美精)+ vs2017 Community + OpenCV 3.3
  13. android刷机电脑版,安卓一键刷机助手
  14. DOSBOX常用快捷键DEBUG指令
  15. 网狐精华版后台修改记录
  16. t420i升级固态硬盘提升_surface laptop3固态升级指南——拆机、换固态硬盘、重装系统...
  17. LaTex学习笔记——目录的制作
  18. 计算机输入输出接口分类,以cpu为中心配上存储器输入输出接口电路及系统总线所组成的计算机称为什麽...
  19. 关于互联网时代的自助旅游
  20. linux内核-进程的调度与切换

热门文章

  1. java虚引用作用_深入理解Java中的引用(二)——强软弱虚引用
  2. python可变参数函数二阶导数公式_Python中函数的参数定义和可变参数
  3. [转载] JAVA语言程序设计(基础篇)第十版课后题答案(第一章)
  4. [转载] python基础入门二
  5. git master主分支_Git分支管理策略及简单操作
  6. c#中.clear()作用_清单 .Clear()方法以及C#中的示例
  7. 关于CentOS-6的默认带的mysql启动和安装问题
  8. 【博主推荐】Python 基于Xlwings、Openpyxl自己重新封装Python操作Excel类
  9. Debian11安装VLC Media Player视频播放器
  10. pyqt5中的lineEdit中只输入数字和字母