欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

java 實(shí)現(xiàn)websocket的兩種方式實(shí)例詳解

 更新時(shí)間:2018年07月27日 15:25:59   作者:Mia_li  
這篇文章主要介紹了java 實(shí)現(xiàn)websocket的兩種方式實(shí)例詳解,一種使用tomcat的websocket實(shí)現(xiàn),一種使用spring的websocket,本文通過(guò)代碼給大家介紹的非常詳細(xì),需要的朋友可以參考下

一、介紹

1.兩種方式,一種使用tomcat的websocket實(shí)現(xiàn),一種使用spring的websocket

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

3.spring與websocket整合需要spring 4.x,并且使用了socketjs,對(duì)不支持websocket的瀏覽器可以模擬websocket使用

二、方式一:tomcat

使用這種方式無(wú)需別的任何配置,只需服務(wù)端一個(gè)處理類,

 服務(wù)器端代碼

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("給一個(gè)人", 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"); 
//判斷當(dāng)前瀏覽器是否支持WebSocket 
if ('WebSocket' in window) { 
 websocket = new WebSocket("ws://" + document.location.host + "/WebChat/websocket/" + username + "/"+ _img); 
} else { 
 alert('當(dāng)前瀏覽器 Not support websocket') 
} 
//連接發(fā)生錯(cuò)誤的回調(diào)方法 
websocket.onerror = function() { 
 setMessageInnerHTML("WebSocket連接發(fā)生錯(cuò)誤"); 
}; 
//連接成功建立的回調(diào)方法 
websocket.onopen = function() { 
 setMessageInnerHTML("WebSocket連接成功"); 
} 
//接收到消息的回調(diào)方法 
websocket.onmessage = function(event) { 
 setMessageInnerHTML(event.data); 
} 
//連接關(guān)閉的回調(diào)方法 
websocket.onclose = function() { 
 setMessageInnerHTML("WebSocket連接關(guān)閉"); 
} 
//監(jiān)聽窗口關(guān)閉事件,當(dāng)窗口關(guān)閉時(shí),主動(dòng)去關(guān)閉websocket連接,防止連接還沒斷開就關(guān)閉窗口,server端會(huì)拋異常。 
window.onbeforeunload = function() { 
 closeWebSocket(); 
} 
//關(guān)閉WebSocket連接 
function closeWebSocket() { 
 websocket.close(); 
} 

發(fā)送消息只需要使用websocket.send(“發(fā)送消息”),就可以觸發(fā)服務(wù)端的onMessage()方法,當(dāng)連接時(shí),觸發(fā)服務(wù)器端onOpen()方法,此時(shí)也可以調(diào)用發(fā)送消息的方法去發(fā)送消息。關(guān)閉websocket時(shí),觸發(fā)服務(wù)器端onclose()方法,此時(shí)也可以發(fā)送消息,但是不能發(fā)送給自己,因?yàn)樽约旱囊呀?jīng)關(guān)閉了連接,但是可以發(fā)送給其他人。

三、方法二:spring整合

WebSocketConfig.java

這個(gè)類是配置類,所以需要在spring mvc配置文件中加入對(duì)這個(gè)類的掃描,第一個(gè)addHandler是對(duì)正常連接的配置,第二個(gè)是如果瀏覽器不支持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

這個(gè)類的作用就是在連接成功前和成功后增加一些額外的功能,Constants.java類是一個(gè)工具類,兩個(gè)常量。

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區(qū)分WebSocketHandler,以便定向發(fā)送消息 String userName = 
   * (String) session.getAttribute(Constants.SESSION_USERNAME); if 
   * (userName==null) { userName="default-system"; } 
   * attributes.put(Constants.WEBSOCKET_USERNAME,userName); 
   * 
   * } } 
   */ 
  //使用userName區(qū)分WebSocketHandler,以便定向發(fā)送消息(使用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

這個(gè)類是對(duì)消息的一些處理,比如是發(fā)給一個(gè)人,還是發(fā)給所有人,并且前端連接時(shí)觸發(fā)的一些動(dòng)作

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;// 這個(gè)會(huì)出現(xiàn)性能問題,最好用Map來(lái)存儲(chǔ),key用userid 
 private static Logger logger = Logger.getLogger(ChatMessageHandler.class); 
 static { 
  users = new ArrayList<WebSocketSession>(); 
 } 
 /** 
  * 連接成功時(shí)候,會(huì)觸發(fā)UI上onopen方法 
  */ 
 @Override 
 public void afterConnectionEstablished(WebSocketSession session) throws Exception { 
  System.out.println("connect to the websocket success......"); 
  users.add(session); 
  // 這塊會(huì)實(shí)現(xiàn)自己業(yè)務(wù),比如,當(dāng)用戶登錄后,會(huì)把離線消息推送給用戶 
  // TextMessage returnMessage = new TextMessage("你將收到的離線"); 
  // session.sendMessage(returnMessage); 
 } 
 /** 
  * 在UI在用js調(diào)用websocket.send()時(shí)候,會(huì)調(diào)用該方法 
  */ 
 @Override 
 protected void handleTextMessage(WebSocketSession session, TextMessage message) throws Exception { 
  sendMessageToUsers(message); 
  //super.handleTextMessage(session, message); 
 } 
 /** 
  * 給某個(gè)用戶發(fā)送消息 
  * 
  * @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; 
   } 
  } 
 } 
 /** 
  * 給所有在線用戶發(fā)送消息 
  * 
  * @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

正常的配置文件,同時(shí)需要增加對(duì)WebSocketConfig.java類的掃描,并且增加

xmlns:websocket="http://www.springframework.org/schema/websocket" 
    http://www.springframework.org/schema/websocket 
    <a target="_blank"  rel="external nofollow" >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(); 
    //調(diào)用后臺(tái)handleTextMessage方法 
    websocket.send(msg); 
   } else { 
    alert("連接失敗!"); 
   } 
  }); 
 </script> 

注意導(dǎo)入socketjs時(shí)要使用地址全稱,并且連接使用的是http而不是websocket的ws

總結(jié)

以上所述是小編給大家介紹的java 實(shí)現(xiàn)websocket的兩種方式實(shí)例詳解,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!

相關(guān)文章

  • MyBatisPlus自定義SQL的實(shí)現(xiàn)

    MyBatisPlus自定義SQL的實(shí)現(xiàn)

    MyBatisPlus提供了自定義SQL功能,允許開發(fā)者在Mapper接口中定義方法,并通過(guò)XML文件或注解編寫SQL語(yǔ)句,本文詳解了如何在MP中使用自定義SQL,感興趣的可以了解一下
    2024-09-09
  • Kotlin 內(nèi)聯(lián)函數(shù)詳解及實(shí)例

    Kotlin 內(nèi)聯(lián)函數(shù)詳解及實(shí)例

    這篇文章主要介紹了Kotlin 內(nèi)聯(lián)函數(shù)詳解及實(shí)例的相關(guān)資料,需要的朋友可以參考下
    2017-06-06
  • 關(guān)于線程池你不得不知道的一些設(shè)置

    關(guān)于線程池你不得不知道的一些設(shè)置

    這篇文章主要介紹了關(guān)于線程池你不得不知道的一些設(shè)置,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧<BR>
    2019-04-04
  • Spring Boot與Kotlin定時(shí)任務(wù)的示例(Scheduling Tasks)

    Spring Boot與Kotlin定時(shí)任務(wù)的示例(Scheduling Tasks)

    這篇文章主要介紹了Spring Boot與Kotlin定時(shí)任務(wù)的示例(Scheduling Tasks),小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2018-03-03
  • 解決springcloud啟動(dòng)時(shí)報(bào)錯(cuò)Connection refused:connect問題

    解決springcloud啟動(dòng)時(shí)報(bào)錯(cuò)Connection refused:connect問題

    這篇文章主要介紹了解決springcloud啟動(dòng)時(shí)報(bào)錯(cuò)Connection refused:connect問題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2024-05-05
  • 淺談IDEA中Maven配置問題全解決

    淺談IDEA中Maven配置問題全解決

    這篇文章主要介紹了淺談IDEA中Maven配置問題全解決,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2020-07-07
  • IDEA2020如何打開Run Dashboard的方法步驟

    IDEA2020如何打開Run Dashboard的方法步驟

    這篇文章主要介紹了IDEA2020如何打開Run Dashboard的方法步驟,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2020-07-07
  • spring boot(三)之Spring Boot中Redis的使用

    spring boot(三)之Spring Boot中Redis的使用

    這篇文章主要介紹了spring boot(三)之Spring Boot中Redis的使用,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友可以參考下
    2017-05-05
  • spring mvc中直接注入的HttpServletRequst安全嗎

    spring mvc中直接注入的HttpServletRequst安全嗎

    這篇文章主要給大家介紹了關(guān)于spring mvc中直接注入的HttpServletRequst是不是安全的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來(lái)一起看看吧。
    2018-04-04
  • [Spring MVC]-詳解SpringMVC的各種參數(shù)綁定方式

    [Spring MVC]-詳解SpringMVC的各種參數(shù)綁定方式

    本篇文章主要介紹了SpringMVC的各種參數(shù)綁定方式 ,具有一定的參考價(jià)值,有需要的可以了解一下。
    2016-12-12

最新評(píng)論