Your Name
2023-07-03 2b919980a8c70554a64cb3d03cc95679af4d817f
service-api/src/main/java/com/java110/api/websocket/ParkingBoxWebsocket.java
@@ -139,7 +139,10 @@
     * 实现服务器主动推送
     */
    public void sendMessage(String message) throws IOException {
        this.session.getBasicRemote().sendText(message);
        //this.session.getBasicRemote().sendText(message);
        synchronized (this.session) {
            this.session.getBasicRemote().sendText(message);
        }
    }