我有一个简单的 websocket 应用程序,已部署在 tomcat 7.0.52 上。我正在使用 JSR 356 API javax.websocket-api-1.0-b08.jar。
我的 Java 服务器端代码是
import javax.websocket.server.ServerEndpoint;
import javax.websocket.*;
@ServerEndpoint("/hello")
public class HelloBean {
@OnMessage
public String sayHello(String name)
{
return name + "return";
}
}
每当我尝试连接到 websocket 时,它都会向我抛出它关闭的错误。
在客户端(javascript):代码如下
var ws = new WebSocket("ws://localhost:8080/hello");
ws.onopen = function()
{
ws.send("Message to send");
};
ws.onmessage = function (evt)
{ // var received_msg = evt.data;
alert("Message is received...");
};
ws.onclose = function()
{
// websocket is closed.
alert("Connection is closed...");
};
我无法理解为什么它显示连接已关闭消息。