应用程序应该在发出请求时更新表。我有以下代码来接收来自服务器的通知。当我运行应用程序时,它会在警告框中显示以下内容,似乎已连接但是当我打电话时“发送”#39;通知类的方法它不会改变任何东西。
提醒1)
windowfunction connect() {
wsocket = new WebSocket("ws://localhost:8080/Notifications");
alert("got connected");
document.getElementById("foo").innerHTML = "arraypv[0]";
wsocket.onmessage = onMessage;
}
提醒2)
got connected
的JavaScript
<script type="text/javascript">
var wsocket;
function connect() {
wsocket = new WebSocket("ws://localhost:8080/Notifications");
alert("got connected");
wsocket.onmessage = onMessage;
}
function onMessage(evt) {
alert(evt);
var arraypv = evt;
alert("array" + arraypv);
document.getElementById("foo").innerHTML = arraypv[0];
}
alert("window" + connect);
window.addEventListener("load", connect, false);
</script>
代码
@ServerEndpoint("/Notifications")
public class Notifications {
/* Queue for all open WebSocket sessions */
static Queue<Session> queue = new ConcurrentLinkedQueue();
public static void send() {
System.err.println("send");
String msg = "Here is the message";
try {
/* Send updates to all open WebSocket sessions */
for (Session session : queue) {
session.getBasicRemote().sendText(msg);
}
} catch (IOException e) {
e.printStackTrace();
}
}
@OnOpen
public void openConnection(Session session) {
System.err.println("in open connection");
queue.add(session);
}
@OnClose
public void closedConnection(Session session) {
System.err.println("in closed connection");
queue.remove(session);
}
@OnError
public void error(Session session, Throwable t) {
System.err.println("in error");
queue.remove(session);
}
}
Maven
<dependency>
<groupId>javax.websocket</groupId>
<artifactId>javax.websocket-api</artifactId>
<version>1.0-b08</version>
</dependency>
要发送消息,我在我的一个功能中使用以下代码
Notifications.send();
控制台只显示
严重:发送
当我使用FireBug跟踪连接时,它会显示
Firefox can't establish a connection to the server at ws://localhost:8080/Notifications.
答案 0 :(得分:3)
您忘记了尾随斜杠: 你应该连接到
ws://localhost:8080/Notifications/
而不是
ws://localhost:8080/Notifications
(注意尾部斜线非常重要)。
此外,您的代码还有一些问题。 WebSocket就像 - 几乎所有javascript中的异步一样。 在您执行
的时间点alert("got connected");
websocket不是以动作方式连接的。 请像这样附上一个事件处理程序
wsocket.onopen = function() {
alert("got connected");
};