Spring Boot 使用websocket(Spring支持的原生方式)

Spring Boot 使用websocket

1.搭建Spring Boot項目 wsdemo

1.1 pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.sunlong</groupId>
    <artifactId>spring-boot-websocket-demo</artifactId>
    <version>1.0.0</version>
    <packaging>jar</packaging>

    <name>spring-boot-websocket-demo</name>
    <description>Demo project for Spring Boot</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.9.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>

         <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-websocket</artifactId>
        </dependency>

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>

1.2 建立WebSocket接口 MyWebSocket.java

package com.sunlong.websocket;

import com.sunlong.service.SendService;
import com.sunlong.utils.SpringUtil;
import org.springframework.stereotype.Controller;

import javax.websocket.*;
import javax.websocket.server.ServerEndpoint;
import java.io.IOException;

/**
 * spring-boot-websocket-demo
 *
 * @Author 孫龍
 * @Date 2017/12/4
 */
@ServerEndpoint(value = "/websocket")
@Controller
public class MyWebSocket {

    //靜態(tài)變量,用來記錄當(dāng)前在線連接數(shù)笤喳。
    private static int onlineCount = 0;
    //注入Service只能使用這種方式
    private SendService sendService = SpringUtil.getBean(SendService.class);

    /**
     * 連接建立成功調(diào)用的方法
     */
    @OnOpen
    public void onOpen(Session session) {
        addOnlineCount();           //在線數(shù)加1
        System.out.println("有新連接加入谤专!ID是" + session.getId() + "    當(dāng)前在線人數(shù)為" + getOnlineCount());
    }

    /**
     * 連接關(guān)閉調(diào)用的方法
     */
    @OnClose
    public void onClose(Session session) {

        subOnlineCount();           //在線數(shù)減1
        System.out.println("有一連接關(guān)閉揽祥!ID是:" + session.getId() + "   當(dāng)前在線人數(shù)為" + getOnlineCount());
        try {
            session.close();
        } catch (IOException e) {
            System.out.println("關(guān)閉資源時出錯!");
            e.printStackTrace();
        }
    }

    /**
     * 收到客戶端消息后調(diào)用的方法
     */
    @OnMessage
    public void onMessage(String message, Session session) throws IOException {
        System.out.println("來自客戶端的消息:" + message + "   ID是:" + session.getId());

        sendService.sendMessage(session, "服務(wù)器消息!");

    }

    /**
     * 發(fā)生錯誤時調(diào)用
     */
    @OnError
    public void onError(Session session, Throwable error) {
        System.out.println("發(fā)生錯誤》》發(fā)生時間:" + System.currentTimeMillis() + "  ID是:" + session.getId());

        error.printStackTrace();
    }

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

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

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

}

1.3發(fā)送消息的Service

接口 SendService.java

package com.sunlong.service;

import javax.websocket.Session;
import java.io.IOException;
import java.util.List;

/**
 * spring-boot-websocket-demo
 *
 * @Author 孫龍
 * @Date 2017/11/28
 */
public interface SendService {

    /**
     * 給多個用戶發(fā)送數(shù)據(jù)
     *
     * @param sessionList
     * @param message
     * @throws IOException
     */
    void sendBatch(List<Session> sessionList, String message) throws IOException;

    /**
     * 發(fā)送消息
     *
     * @param session
     * @param message
     * @throws IOException
     */
    void sendMessage(Session session, String message) throws IOException;
}

實現(xiàn)類 SendServiceImpl.java

package com.sunlong.service.impl;

import com.sunlong.service.SendService;
import org.springframework.stereotype.Service;

import javax.websocket.Session;
import java.io.IOException;
import java.util.List;

/**
 * spring-boot-websocket-demo
 *
 * @Author 孫龍
 * @Date 2017/11/28
 */
@Service
public class SendServiceImpl implements SendService {

    @Override
    public void sendBatch(List<Session> sessionList, String message) throws IOException {
        for (Session session : sessionList) {
            sendMessage(session, message);
        }
    }

    @Override
    public void sendMessage(Session session, String message) throws IOException {
        session.getBasicRemote().sendText(message);
    }
}

1.4獲取Spring容器Bean的SpringUtil.java

package com.topsec.util;

import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Component;

@Component
public class SpringUtil implements ApplicationContextAware {
    private static ApplicationContext applicationContext;

    // 獲取applicationContext
    public static ApplicationContext getApplicationContext() {
        return applicationContext;
    }

    // 通過name獲取 Bean.
    public static Object getBean(String name) {
        return getApplicationContext().getBean(name);
    }

    // 通過class獲取Bean.
    public static <T> T getBean(Class<T> clazz) {
        return getApplicationContext().getBean(clazz);
    }

    // 通過name,以及Clazz返回指定的Bean
    public static <T> T getBean(String name, Class<T> clazz) {
        return getApplicationContext().getBean(name, clazz);
    }

    @Override
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
        if (SpringUtil.applicationContext == null) {
            SpringUtil.applicationContext = applicationContext;
        }
    }
}

1.5前端訪問頁面 ws01.html

在resources/templates目錄下

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <title>My WebSocket</title>
</head>
<body>
Welcome<br/>
<input id="text" type="text"/>
<button onclick="send()">發(fā)送</button>
<button onclick="closeWebSocket()">關(guān)閉連接</button>
<div id="message">
</div>
</body>

<script type="text/javascript">
    var websocket = null;
    var host = "";
    if (window.location.protocol == 'http:') {
        host = 'ws://localhost:8585/websocket';
    } else {
        host = 'wss://localhost:8585/websocket';
    }
    //判斷當(dāng)前瀏覽器是否支持WebSocket

    if ('WebSocket' in window) {
        websocket = new WebSocket(host);
    } else if ('MozWebSocket' in window) {
        websocket = new MozWebSocket(host);
    } else {
        alert("該瀏覽器不支持WebSocket重荠!");
//        return;
    }

    //連接發(fā)生錯誤的回調(diào)方法
    websocket.onerror = function () {
        setMessageInnerHTML("連接出錯");
    };

    //連接成功建立的回調(diào)方法
    websocket.onopen = function (event) {
        console.log("連接成功");
        setMessageInnerHTML("已連接服務(wù)器!");
    }

    //接收到消息的回調(diào)方法
    websocket.onmessage = function (event) {
        console.log(event.data);
        setMessageInnerHTML(event.data);
    }

    //連接關(guān)閉的回調(diào)方法
    websocket.onclose = function () {
        setMessageInnerHTML("連接關(guān)閉");
    }

    //監(jiān)聽窗口關(guān)閉事件虚茶,當(dāng)窗口關(guān)閉時戈鲁,主動去關(guān)閉websocket連接,防止連接還沒斷開就關(guān)閉窗口媳危,server端會拋異常荞彼。
    window.onbeforeunload = function () {
        websocket.close();
    }

    //將消息顯示在網(wǎng)頁上
    function setMessageInnerHTML(innerHTML) {
        document.getElementById('message').innerHTML += innerHTML + '<br/>';
    }

    //關(guān)閉連接
    function closeWebSocket() {
        websocket.close();
    }

    //發(fā)送消息
    function send() {
        var message = document.getElementById('text').value;
        websocket.send(message);
    }
</script>
</html>

1.6 配置頁面映射路徑 WebMvcConfig.java

package com.sunlong.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
import org.springframework.web.socket.server.standard.ServerEndpointExporter;

/**
 * spring-boot-websocket-demo
 * 該類的作用是可以為ws.html提供便捷的地址映射,只需要在地址欄里面輸入localhost:8080/ws,就會找到ws.html
 *
 * @Author 孫龍
 * @Date 2017/11/28
 */
@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter {
    @Override
    public void addViewControllers(ViewControllerRegistry registry) {
        registry.addViewController("/ws01").setViewName("/ws01");
    }
    

    /**
     * 配置Spring支持的websocket的類,是必須的
     *
     * @return
     */
    @Bean
    public ServerEndpointExporter serverEndpointExporter() {
        return new ServerEndpointExporter();
    }
}

1.7 端口配置 application.yml

server:
  port: 8585

1.8 啟動類WsdemoApplication.java

package com.topsec;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class WsdemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(WsdemoApplication.class, args);
    }
}

1.9 啟動

啟動項目待笑,打開瀏覽器訪問http://localhost:8585/ws01 給websocket發(fā)送消息鸣皂,測試是否成功;

Github代碼示例
希望能夠幫助到你暮蹂,幫到你請給我一個星星寞缝!

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市仰泻,隨后出現(xiàn)的幾起案子荆陆,更是在濱河造成了極大的恐慌,老刑警劉巖集侯,帶你破解...
    沈念sama閱讀 206,968評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件被啼,死亡現(xiàn)場離奇詭異,居然都是意外死亡棠枉,警方通過查閱死者的電腦和手機(jī)浓体,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來辈讶,“玉大人命浴,你說我怎么就攤上這事〖” “怎么了生闲?”我有些...
    開封第一講書人閱讀 153,220評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長月幌。 經(jīng)常有香客問我碍讯,道長,這世上最難降的妖魔是什么扯躺? 我笑而不...
    開封第一講書人閱讀 55,416評論 1 279
  • 正文 為了忘掉前任冲茸,我火速辦了婚禮屯阀,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘轴术。我一直安慰自己难衰,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 64,425評論 5 374
  • 文/花漫 我一把揭開白布逗栽。 她就那樣靜靜地躺著盖袭,像睡著了一般。 火紅的嫁衣襯著肌膚如雪彼宠。 梳的紋絲不亂的頭發(fā)上鳄虱,一...
    開封第一講書人閱讀 49,144評論 1 285
  • 那天,我揣著相機(jī)與錄音凭峡,去河邊找鬼拙已。 笑死,一個胖子當(dāng)著我的面吹牛摧冀,可吹牛的內(nèi)容都是我干的倍踪。 我是一名探鬼主播,決...
    沈念sama閱讀 38,432評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼索昂,長吁一口氣:“原來是場噩夢啊……” “哼建车!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起椒惨,我...
    開封第一講書人閱讀 37,088評論 0 261
  • 序言:老撾萬榮一對情侶失蹤缤至,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后康谆,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體领斥,經(jīng)...
    沈念sama閱讀 43,586評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,028評論 2 325
  • 正文 我和宋清朗相戀三年沃暗,在試婚紗的時候發(fā)現(xiàn)自己被綠了戒突。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,137評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡描睦,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出导而,到底是詐尸還是另有隱情忱叭,我是刑警寧澤,帶...
    沈念sama閱讀 33,783評論 4 324
  • 正文 年R本政府宣布今艺,位于F島的核電站韵丑,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏虚缎。R本人自食惡果不足惜撵彻,卻給世界環(huán)境...
    茶點故事閱讀 39,343評論 3 307
  • 文/蒙蒙 一钓株、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧陌僵,春花似錦轴合、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至偎谁,卻和暖如春总滩,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背巡雨。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評論 1 262
  • 我被黑心中介騙來泰國打工闰渔, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人铐望。 一個月前我還...
    沈念sama閱讀 45,595評論 2 355
  • 正文 我出身青樓冈涧,卻偏偏與公主長得像,于是被迫代替她去往敵國和親蝌以。 傳聞我的和親對象是個殘疾皇子炕舵,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,901評論 2 345

推薦閱讀更多精彩內(nèi)容

  • Spring Boot 參考指南 介紹 轉(zhuǎn)載自:https://www.gitbook.com/book/qbgb...
    毛宇鵬閱讀 46,748評論 6 342
  • Spring Cloud為開發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見模式的工具(例如配置管理,服務(wù)發(fā)現(xiàn)跟畅,斷路器咽筋,智...
    卡卡羅2017閱讀 134,601評論 18 139
  • Spring Web MVC Spring Web MVC 是包含在 Spring 框架中的 Web 框架,建立于...
    Hsinwong閱讀 22,313評論 1 92
  • 此篇翻譯的是Spring Boot官方指南 Part III. 使用 Spring Boot (Using Spr...
    K天道酬勤閱讀 6,709評論 0 21
  • 不領(lǐng)情小姐有些瘋狂徊件,有些特立獨行奸攻。 當(dāng)我們還在教室乖乖上自習(xí),期末眼巴巴盼著老師圈重點的時候虱痕,她早就把成都大街小巷...
    鳴空閱讀 323評論 0 4