第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定

springboot整合websocket(1)

標(biāo)簽:
Java SpringBoot

一、背景

  我们都知道http协议只能浏览器单方面向服务器发起请求获得响应,服务器不能主动向浏览器推送消息。想要实现浏览器的主动推送有两种主流实现方式:

  • 轮询:缺点很多,但是实现简单

  • websocket:在浏览器和服务器之间建立tcp连接,实现全双工通信

  springboot使用websocket有两种方式,一种是实现简单的websocket,另外一种是实现STOMP协议。这一篇实现简单的websocket,STOMP下一篇在讲。

注意:如下都是针对使用springboot内置容器

二、实现

1、依赖引入

  要使用websocket关键是@ServerEndpoint这个注解,该注解是javaee标准中的注解,tomcat7及以上已经实现了,如果使用传统方法将war包部署到tomcat中,只需要引入如下javaee标准依赖即可:

<dependency>
  <groupId>javax</groupId>
  <artifactId>javaee-api</artifactId>
  <version>7.0</version>
  <scope>provided</scope></dependency>

如使用springboot内置容器,无需引入,springboot已经做了包含。我们只需引入如下依赖即可:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-websocket</artifactId>
    <version>1.5.3.RELEASE</version>
    <type>pom</type></dependency>

2、注入Bean

  首先注入一个ServerEndpointExporterBean,该Bean会自动注册使用@ServerEndpoint注解申明的websocket endpoint。代码如下:

@Configurationpublic class WebSocketConfig {    @Bean
    public ServerEndpointExporter serverEndpointExporter(){        return new ServerEndpointExporter();
    }
}

3、申明endpoint

  建立MyWebSocket.java类,在该类中处理websocket逻辑

@ServerEndpoint(value = "/websocket") //接受websocket请求路径@Component  //注册到spring容器中public class MyWebSocket {    //保存所有在线socket连接
    private static Map<String,MyWebSocket> webSocketMap = new LinkedHashMap<>();    //记录当前在线数目
    private static int count=0;    //当前连接(每个websocket连入都会创建一个MyWebSocket实例
    private Session session;    private Logger log = LoggerFactory.getLogger(this.getClass());    //处理连接建立
    @OnOpen
    public void onOpen(Session session){        this.session=session;
        webSocketMap.put(session.getId(),this);
        addCount();
        log.info("新的连接加入:{}",session.getId());
    }    //接受消息
    @OnMessage
    public void onMessage(String message,Session session){
        log.info("收到客户端{}消息:{}",session.getId(),message);        try{            this.sendMessage("收到消息:"+message);
        }catch (Exception e){
            e.printStackTrace();
        }
    }    //处理错误
    @OnError
    public void onError(Throwable error,Session session){
        log.info("发生错误{},{}",session.getId(),error.getMessage());
    }    //处理连接关闭
    @OnClose
    public void onClose(){
        webSocketMap.remove(this.session.getId());
        reduceCount();
        log.info("连接关闭:{}",this.session.getId());
    }    //群发消息

    //发送消息
    public void sendMessage(String message) throws IOException {        this.session.getBasicRemote().sendText(message);
    }    //广播消息
    public static void broadcast(){
        MyWebSocket.webSocketMap.forEach((k,v)->{            try{
                v.sendMessage("这是一条测试广播");
            }catch (Exception e){
            }
        });
    }    //获取在线连接数目
    public static int getCount(){        return count;
    }    //操作count,使用synchronized确保线程安全
    public static synchronized void addCount(){
        MyWebSocket.count++;
    }    public static synchronized void reduceCount(){
        MyWebSocket.count--;
    }
}

4、客户的实现

  客户端使用h5原生websocket,部分浏览器可能不支持。代码如下:

<html><head>
    <title>websocket测试</title>
    <meta charset="utf-8"></head><body>
    <button ="sendMessage()">测试</button>
    <script>
        let socket = new WebSocket("ws://localhost:8080/websocket");
        socket. = err => {            console.log(err);
        };
        socket.onopen = event => {            console.log(event);
        };
        socket.onmessage = mess => {            console.log(mess);
        };
        socket.onclose = () => {            console.log("连接关闭");
        };        function sendMessage() {            if (socket.readyState === 1)
                socket.send("这是一个测试数据");            else
                alert("尚未建立websocket连接");
        }    </script></body></html>

三、测试

  建立一个controller测试群发,代码如下:

@RestControllerpublic class HomeController {    @GetMapping("/broadcast")    public void broadcast(){
        MyWebSocket.broadcast();
    }
}

然后打开上面的html,可以看到浏览器和服务器都输出连接成功的信息:

浏览器:Event {isTrusted: true, type: "open", target: WebSocket, currentTarget: WebSocket, eventPhase: 2, …}

服务端:
2018-08-01 14:05:34.727  INFO 12708 --- [nio-8080-exec-1] com.fxb.h5websocket.MyWebSocket          : 新的连接加入:0

点击测试按钮,可在服务端看到如下输出:

2018-08-01 15:00:34.644  INFO 12708 --- [nio-8080-exec-6] com.fxb.h5websocket.MyWebSocket          : 收到客户端2消息:这是一个测试数据

再次打开html页面,这样就有两个websocket客户端,然后在浏览器访问localhost:8080/broadcast测试群发功能,每个客户端都会输出如下信息:

MessageEvent {isTrusted: true, data: "这是一条测试广播", origin: "ws://localhost:8080", lastEventId: "", source: null, …}



  源码可在github上下载,记得点赞,star哦

原文出处:https://www.cnblogs.com/wuyoucao/p/9404255.html

點(diǎn)擊查看更多內(nèi)容
2人點(diǎn)贊

若覺(jué)得本文不錯(cuò),就分享一下吧!

評(píng)論

作者其他優(yōu)質(zhì)文章

正在加載中
感謝您的支持,我會(huì)繼續(xù)努力的~
掃碼打賞,你說(shuō)多少就多少
贊賞金額會(huì)直接到老師賬戶
支付方式
打開(kāi)微信掃一掃,即可進(jìn)行掃碼打賞哦
今天注冊(cè)有機(jī)會(huì)得

100積分直接送

付費(fèi)專欄免費(fèi)學(xué)

大額優(yōu)惠券免費(fèi)領(lǐng)

立即參與 放棄機(jī)會(huì)
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)

舉報(bào)

0/150
提交
取消