我正在开发一个需要大量用户交互的应用程序。这是一种人们可以发表评论的讨论形式。目前,我们正在使用web服务,每次用户发布评论或回复评论时,我们都会称之为web服务,它会与数据库通信并完成其余的工作。我发现这个过程相当缓慢。因此,我在一些地方读到,web套接字可能是我的问题的解决方案,我可以直接使用可用的API与数据库通信,并使我的应用程序更快。我搜索了很多,在一些网上可用的例子中,他们也在使用servlet,有些则没有。这非常令人困惑。我只想使用html5网络套接字。UI代码是一个将向后端发送一些文本的页面。JS代码为:
<script>
var connection;
function connect() {
console.log("connection");
connection = new WebSocket("not sure what exactly to use here");
// Log errors
connection.onerror = function (error) {
console.log('WebSocket Error ');
console.log(error);
};
// Log messages from the server
connection.onmessage = function (e) {
console.log('Server: ' + e.data);
alert("Server said: " + e.data);
};
connection.onopen = function (e) {
console.log("Connection open...");
}
connection.onclose = function (e) {
console.log("Connection closed...");
}
}
function sayHello() {
connection.send(document.getElementById("msg").value);
}
function close() {
console.log("Closing...");
connection.close();
}
</script>
在创建新的WebSocket对象时,我需要提到什么路径。我是否应该使用servlet。请给出关于后端java代码的想法。提前感谢
Servlet没有这样的支持。您应该使用JavaEE7的WebSocket。你的代码应该像这个
@ServerEndpoint("/echo")
public class EchoEndpoint {
@OnMessage
public void onMessage(Session session, String msg) {
try {
session.getBasicRemote().sendText(msg);
//Save message here into database
} catch (IOException e) { ... }
}
}
有关详细信息,请参阅此处:http://docs.oracle.com/javaee/7/tutorial/doc/websocket004.htm