美文网首页
聊天功能

聊天功能

作者: 黑桃_06ea | 来源:发表于2019-04-17 18:35 被阅读0次

WebSocket是一种在单个TCP连接上进行全双工通信的协议。WebSocket通信协议于2011年被IETF定为标准RFC 6455,并由RFC7936补充规范。WebSocket API也被W3C定为标准。
WebSocket使得客户端和服务器之间的数据交换变得更加简单,允许服务端主动向客户端推送数据。在WebSocket API中,浏览器和服务器只需要完成一次握手,两者之间就直接可以创建持久性的连接,并进行双向数据传输。

  • pom.xml添加依赖
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-websocket</artifactId>
</dependency>
  • 建文件夹


    webscoket01.png
  • WebScoketConfig:WebSocket的配置类,开启WebSocket支持
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.socket.server.standard.ServerEndpointExporter;
/**
 * WebSocket的配置类
 * 开启了WebSocket支持
 */
@Configuration
public class WebSocketConfig {
    @Bean
    public ServerEndpointExporter serverEndpointExporter() {
        return new ServerEndpointExporter();
    }
}
  • WebScoketServer:客户端向服务器端建立WebSocket连接的url
import org.springframework.stereotype.Component;
import javax.websocket.*;
import javax.websocket.server.ServerEndpoint;
import java.io.IOException;
import java.util.concurrent.CopyOnWriteArraySet;
//客户端向服务器端建立WebSocket连接的url
@ServerEndpoint("/websocket")
@Component
public class WebSocketServer {

    //静态变量,用来记录当前在线连接数,可选
    private static int onlineCount = 0;

    //concurrent包的线程安全Set,用来存放每个客户端对应的MyWebSocket对象,必须
    private static CopyOnWriteArraySet<WebSocketServer> webSocketSet
            = new CopyOnWriteArraySet<WebSocketServer>();

    //与某个客户端的连接会话,需要通过它来给客户端发送数据,必须
    private Session session;


    /**
     * 连接建立成功调用的方法
     */
    @OnOpen
    public void onOpen(Session session) {
        this.session = session;
        webSocketSet.add(this);     //将客户端加入set中
        addOnlineCount();           //在线数加1
        System.out.println("有新窗口开始监听,当前在线人数为"
                + getOnlineCount());
        try {
            sendMessage("连接成功");
        } catch (IOException e) {
            System.out.println("WebSocket IO异常");
        }
    }

    /**
     * 连接关闭调用的方法
     */
    @OnClose
    public void onClose() {
        webSocketSet.remove(this);  //从set中删除
        subOnlineCount();           //在线数减1
        System.out.println("有连接关闭!当前在线人数为" + getOnlineCount());
    }

    /**
     * 收到客户端消息后调用的方法
     *
     * @param message 客户端发送过来的消息
     */
    @OnMessage
    public void onMessage(String message, Session session) {
        System.out.println("收到客户端的信息:" + 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) {
        System.out.println("发生错误");
        error.printStackTrace();
    }

    /**
     * 实现服务器主动推送
     */
    public void sendMessage(String message) throws IOException {
        this.session.getBasicRemote().sendText(message);
    }


    /**
     * 群发自定义消息
     */
    public static void sendInfo(String message) throws IOException {
        System.out.println("推送消息内容:" + message);
        for (WebSocketServer item : webSocketSet) {
            try {
                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--;
    }
}
  • WebScoketController类
import com.boot.websocket.config.WebSocketServer;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.io.IOException;
@RestController
public class WebSocketController {

    //推送数据接口
    @GetMapping("/socket/push")
    public String pushMsg(String message) {
        try {
            WebSocketServer.sendInfo(message);
        } catch (IOException e) {
            e.printStackTrace();
        }
        return "success";
    }
}
  • 在Application添加@EnableSwagger2Doc注解
import com.spring4all.swagger.EnableSwagger2Doc;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@EnableSwagger2Doc
@SpringBootApplication
public class SpringBootWebsocketApplication {
    public static void main(String[] args) {
        SpringApplication.run(SpringBootWebsocketApplication.class, args);
    }
}
  • 前段代码:
<html>
    <head>
        <meta charset="utf-8" />
        <title>websocket示例</title>
        <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
        
    </head>
    <body>
        <div id="app">
            <h3>消息显示</h3>
            <ul>
                <li v-for="(message, index) in messages" :key="index">
                    {{message}}
                </li>
            </ul>
            <hr>
            <h3>发送消息 </h3>
            <input type="text" v-model="sendMsg" />
            <button type="button" @click="send">发送</button>
            
        </div>
        <script type="text/javascript">
            var socket;
            var app = new Vue({
                el: '#app',
                data: {
                    messages: [],
                    sendMsg: ''
                },
                created: function() {
                    var _this = this;
                    //创建WebSocket对象,指定要连接的服务器地址和端口,建立连接
                    socket = new WebSocket("ws://192.168.43.4:8080/websocket");
                    //打开连接
                    socket.onopen = function() {
                        console.log("Socket已打开");

                    };
                    //获得服务端推送的消息
                    socket.onmessage = function(msg) {
                        console.log(msg.data);
                        _this.messages.push(msg.data);
                        console.log(_this.messages);
                    };
                    //关闭连接
                    socket.onclose = function() {
                        console.log("Socket已关闭");
                    };
                    //发送错误
                    socket.onerror = function() {
                        alert("Socket发生了错误");
                    }
                },
                watch: {
                    // 如果 `messages` 发生改变,这个函数就会运行
                    messages: function(newMsg, oldMsg) {
                        this.messages = newMsg;
                        //新消息弹窗
                        var n =new Notification('您有新的消息',{
                            body:newMsg[newMsg.length - 1],
                            icon:"img/lufei04.jpg"
                            });
                            setTimeout(function(){
                                n.close();
                            },5000);//5秒自动关闭
                            
                    },
                },
                methods: {
                    send: function() {
                        socket.send(this.sendMsg);
                    }
                }
            })
        </script>
    </body>
</html>
  • 运行结果


    webscoket02.png
webscoket03.png

相关文章

  • 聊天功能

    了解webscoket WebSocket是一种在单个TCP连接上进行全双工通信的协议。WebSocket通信协议...

  • 聊天功能了解

    即时通讯 1.XMPP(http://xmpp.org) 1.概念 XMPP是一种基于标准通用标记语言的子集XML...

  • 8-聊天功能

    在Python里面实现实时通讯我们有很多种方法,既然选择了flask框架,那我们也一并采用flask下的flask...

  • Socket 实现聊天功能

    需要提前了解知识点java.net.Socket 解析java.net.ServerSocket 解析 使用soc...

  • Netty实现聊天功能

    客户端首先编写我们的服务端处理器 handler 服务端的初始化类 服务端 服务端服务端处理器 服务端初始化类 服...

  • 【2022-03-19】今日总结

    今天做的事情 1.聊天功能的讨论2.关注功能的讨论3.专家系统的讨论 总结事情 (1)聊天功能的讨论,从功能上聊天...

  • 【功能定义】网站构思

    功能模块 聊天室 聊天功能内容编辑区域 (编辑器)聊天内容显示区域 ( 聊天内容 头像 昵称 )聊天会话(类似we...

  • 第三方插件 - 攻略

    web聊天功能 - websocket

  • Java多人在线聊天室(4)—发送消息与接收消息功能

    好的小伙伴们,我们继续来写聊天室,今天来写的就是这个聊天功能。聊天室怎么可能没有聊天的功能呢?我们来选择聊天对象。...

  • 消息系统设计

    消息推送和聊天功能是移动时代的重要功能,广泛存在于各种业务中 一、特性 消息推送(单播、组播、广播); 聊天(聊天...

网友评论

      本文标题:聊天功能

      本文链接:https://www.haomeiwen.com/subject/xbxowqtx.html