srpingboot基于thymeleaf框架的WebSocket的基本应用

添加pom依赖

图片.png

创建配置类WebSockeCongif

/**
 * Created by xuj on 2018/10/11.
 * 这是websocket的配置类,开启对websocket的支持
 */
@Configuration
public class WebSocketConfig {
    @Bean
    public ServerEndpointExporter serverEndpointExporter() {
        return new ServerEndpointExporter();
    }
}

配置类WebSocketServer

/**
 * Created by xuj on 2018/10/11.
 * ServerEndpoint自定义访问路径
 */
@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( session.getId()+ 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--;
    }
}

服务器界面

<!--服务器界面-->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>服务器</title>
</head>
<body>
<h1>
    <form action="/socket/push" name="loginfrom" accept-charset="utf-8" method="post">
            <textarea id="fuwu" name="fuwu">

            </textarea>
            <input type="submit" value="群发" >
    </form>
</h1>
</body>
</html>

客户端界面

<!--客户端界面-->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>websocket</title>
</head>
<body>
<h2>websocket</h2>
<h1>服务器端信息显示区</h1>
<textarea id="fuwu" style="width: 200px; height: 300px">

</textarea>
<h1>客户信息输入区</h1>
<textarea id="kehu" style="width: 200px">

</textarea>
<button onclick="myFirst()">发送</button>

<script>
    function myFirst() {
            socket.send(document.getElementById("kehu").value);
            document.getElementById("kehu").value =null;
    }
    var socket;
    if (typeof(WebSocket) == "undefined") {
        console.log("您的浏览器不支持WebSocket");
    } else {
        console.log("您的浏览器支持WebSocket");
        //实现化WebSocket对象,指定要连接的服务器地址与端口建立连接
        socket = new WebSocket("ws://localhost:8080/websocket");
//        打开事件
        socket.onopen = function () {
            console.log("Socket已打开");
//            socket.send("这是来自客户端的消息:" + new Date());
        };
        //获得服务器端消息事件
        socket.onmessage = function (msg) {
            console.log(msg.data);
            alert(msg.data);
            document.getElementById("fuwu").value = document.getElementById("fuwu").value+"\n"+ msg.data;
        };
        //关闭事件
        socket.onclose = function () {
            console.log("Socket已关闭");
        };

        //发生了错误事件
        socket.onerror = function () {
            alert("Socket发生了错误");
        }
    }

</script>

</body>
</html>
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,923评论 18 139
  • Spring Boot 参考指南 介绍 转载自:https://www.gitbook.com/book/qbgb...
    毛宇鹏阅读 46,951评论 6 342
  • 电视里放《小芳》这首歌。我想起和小芳一起打工的那些日子。 小芳长得就像那首歌里唱的那样:村里有个姑娘叫小芳,长的好...
    紫色人生阅读 357评论 3 0
  • 明天开始减肥; 今天一定早睡; 再买我就剁手。 ...
    微笑向暖随遇而安阅读 169评论 0 0
  • 趁春梦碎成片片羽翼之前 偏心而又多情的造物主 把全世界的玉洁冰清 全都收拢在一树枝桠之上 无人知道 一夜风雨过后 ...
    江恨雨阅读 356评论 1 9