我尝试使用apache tomcat创建一个websocket聊天应用程序。 但当我尝试使用此行打开websocket连接时,
webSocket = new WebSocket("ws://" + socket_url + ":" + port+ "/WebMobileGroupChatServer/chat?name=" + name);
我还使用
包含了SocketServer.java@ServerEndpoint("/chat")
但是在创建WebSocket时会触发错误
与'ws://192.168.0.157:8080 / WebMobileGroupChatServer / chat?name = sdf'的WebSocket连接失败:WebSocket握手期间出错:意外响应代码:404
我引用了this link
中的代码我该如何解决?