WebSocket初接觸

產生背景

由於HTTP 協議是一種無狀態的、無鏈接的、單向的應用層協議。只能由客戶端發起請求,服務端相應請求,沒法實現服務端主動向客戶端發送消息。 HTTP解決上述問題是採用輪詢或Comet機制,這樣會帶來或多或少的問題,如頻繁的發送請求會給服務請帶來極大壓力。java

概述

WebSocket是一種基於TCP的新型網絡協議,經過一個套接字實現了服務器和瀏覽器之間的全雙工通訊,也就是容許服務端發送信息到客戶端。使用場景如彈幕等。Spring4.0爲WebSocket通訊提供了支持。web

WebSocket請求格式

GET ws:    //請求地址以ws:開頭
Host: 
Upgrade: websocket  //代表鏈接轉化爲WebSocket鏈接
Connection: Upgrade //代表鏈接轉化爲WebSocket鏈接
Origin:
Sec-WebSocket-Key: //標識鏈接
Sec-WebSocket-Version: //指定協議版本
複製代碼

WebSocket響應格式

HTTP/1.1 101 Switching Protocols  //代表HTTP協議即將被更改
Upgrade: websocket
Connection: Upgrade
Sec-WebSocket-Accept: server-random-string
複製代碼

程序清單

  • 導入依賴
<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>
複製代碼
  • 注入 ServerEndpointExporter
@Configuration
public class WebSocketConfig {
       @Bean
       public ServerEndpointExporter serverEndpointExporter() {
           return new ServerEndpointExporter();
       }
}
複製代碼
  • 服務端頁面
@ServerEndpoint("/websocket/{sid}")
@Component
public class WebSocketServer {
	
	static Log log=LogFactory.get(WebSocketServer.class);
    //靜態變量,用來記錄當前在線鏈接數。應該把它設計成線程安全的。
    private static int onlineCount = 0;

    //concurrent包的線程安全Set,用來存放每一個客戶端對應的MyWebSocket對象。
    private static CopyOnWriteArraySet<WebSocketServer> webSocketSet = new CopyOnWriteArraySet<WebSocketServer>();

    //與某個客戶端的鏈接會話,須要經過它來給客戶端發送數據
    private Session session;

    //接收sid
    private String sid="";
    /** * 鏈接創建成功調用的方法*/
    @OnOpen
    public void onOpen(Session session,@PathParam("sid") String sid) {
        this.session = session;
        webSocketSet.add(this);     //加入set中
        addOnlineCount();           //在線數加1
        log.info("有新窗口開始監聽:"+sid+",當前在線人數爲" + getOnlineCount());
        this.sid=sid;
        try {
        	 sendMessage("鏈接成功");
        } catch (IOException e) {
            log.error("websocket IO異常");
        }
    }

    /** * 鏈接關閉調用的方法 */
    @OnClose
    public void onClose() {
        webSocketSet.remove(this);  //從set中刪除
        subOnlineCount();           //在線數減1
        log.info("有一鏈接關閉!當前在線人數爲" + getOnlineCount());
    }

    /** * 收到客戶端消息後調用的方法 * * @param message 客戶端發送過來的消息*/
    @OnMessage
    public void onMessage(String message, Session session) {
    	log.info("收到來自窗口"+sid+"的信息:"+message);
        //羣發消息
        for (WebSocketServer item : webSocketSet) {
            try {
                item.sendMessage(message);
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }

	/** * * @param session * @param error */
    @OnError
    public void onError(Session session, Throwable error) {
        log.error("發生錯誤");
        error.printStackTrace();
    }
	/** * 實現服務器主動推送 */
    public void sendMessage(String message) throws IOException {
        this.session.getBasicRemote().sendText(message);
    }

    /** * 羣發自定義消息 * */
    public static void sendInfo(String message,@PathParam("sid") String sid) throws IOException {
    	log.info("推送消息到窗口"+sid+",推送內容:"+message);
        for (WebSocketServer item : webSocketSet) {
            try {
            	//這裏能夠設定只推送給這個sid的,爲null則所有推送
            	if(sid==null) {
            		item.sendMessage(message);
            	}else if(item.sid.equals(sid)){
            		item.sendMessage(message);
            	}
            } catch (IOException e) {
                continue;
            }
        }
    }

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

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

    public static synchronized void subOnlineCount() {
        WebSocketServer.onlineCount--;
    }
}
複製代碼
  • 消息推送
@Controller
@RequestMapping("/checkcenter")
public class CheckCenterController {

	//頁面請求
	@GetMapping("/socket/{cid}")
	public ModelAndView socket(@PathVariable String cid) {
		ModelAndView mav=new ModelAndView("/socket");
		mav.addObject("cid", cid);
		return mav;
	}
	//推送數據接口
	@ResponseBody
	@RequestMapping("/socket/push/{cid}")
	public ApiReturnObject pushToWeb(@PathVariable String cid,String message) {  
		try {
			WebSocketServer.sendInfo(message,cid);
		} catch (IOException e) {
			e.printStackTrace();
			return ApiReturnUtil.error(cid+"#"+e.getMessage());
		}  
		return ApiReturnUtil.success(cid);
	} 
} 
複製代碼

代碼參考:blog.csdn.net/moshowgame/…spring

相關文章
相關標籤/搜索