simple chatroom realtime:使用Java websocket实时进行聊天室 源码
使用Java Websocket实时聊天室 服务器和客户端将通过websocket相互通信,消息以JSON文件的形式发送。 与http请求答案的机制不同,由于websocket是TCP协议,因此它将遵循3步握手模型。 websocket的标准协议对于常规标准是ws://,对于安全标准是wss://(类似于http://和https://)。 因此,在设置服务器链接时,您将不得不使用ws:// localhost / xxx而不是 。 范例: var webSocket = new WebSocket("ws://localhost:8080/SimpleChatroomRealtime/chatServerEndpoint");
文件列表
simple-chatroom-realtime-master.zip
(预估有个22文件)
simple-chatroom-realtime-master
src
controller
ChatServerContreller.java
2KB
.classpath
884B
.settings
org.eclipse.wst.jsdt.ui.superType.container
49B
org.eclipse.wst.common.project.facet.core.xml
334B
org.eclipse.m2e.core.prefs
86B
org.eclipse.wst.jsdt.ui.superType.name
6B
暂无评论