The remote endpoint was in state [TEXT_FULL_WRITING] which is an invalid state for called method

3-16 14:59:13 109 ConsumeMessageThread_15 ERROR [] - The remote endpoint was in state [TEXT_FULL_WRITING] which is an invalid state for called method
java.lang.IllegalStateException: The remote endpoint was in state [TEXT_FULL_WRITING] which is an invalid state for called method
    at org.apache.tomcat.websocket.WsRemoteEndpointImplBase$StateMachine.checkState(WsRemoteEndpointImplBase.java:1206) ~[tomcat7-websocket.jar:7.0.90]
    at org.apache.tomcat.websocket.WsRemoteEndpointImplBase$StateMachine.textStart(WsRemoteEndpointImplBase.java:1169) ~[tomcat7-websocket.jar:7.0.90]
    at org.apache.tomcat.websocket.WsRemoteEndpointImplBase.sendString(WsRemoteEndpointImplBase.java:194) ~[tomcat7-websocket.jar:7.0.90]
    at org.apache.tomcat.websocket.WsRemoteEndpointBasic.sendText(WsRemoteEndpointBasic.java:37) ~[tomcat7-websocket.jar:7.0.90]

使用websocket 做实时聊天系统,在生产环境上有业务人员反馈收不到消息,查看日志发现有很多The remote endpoint was in state [TEXT_FULL_WRITING] which is an invalid state for called method,猜测很可能是它引起的。
产生原因:同时有多个线程调用了this.session.getBasicRemote().sendText(msg); 方法。
修改前:

public void sendMessage(String msg) {
            try {
                this.session.getBasicRemote().sendText(msg);
            } catch (IOException e) {
                this.sendMessage(new Response().failure(e.getMessage()));
            }
    }

修改后:

public void sendMessage(String msg) {
        synchronized(this.session) {
            try {
                this.session.getBasicRemote().sendText(msg);
            } catch (IOException e) {
                this.sendMessage(new Response().failure(e.getMessage()));
            }
        }
    }
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

友情链接更多精彩内容