Skip to content

Latest commit

 

History

History
82 lines (66 loc) · 3.14 KB

README.md

File metadata and controls

82 lines (66 loc) · 3.14 KB

websocket演示

知识点概要 包括若干个例子(例子多来自网络,以及apache,j2ee官方)

部署

##功能列表


(XML)编码解密处理(codec)

建议在apache-tomcat-7.0.72; 个人测试apache-tomcat-7.0.54版本不正常

Echo协议

位置 Path
Server com.sample.websocket.endpoint.EchoEndpoint
Client single_message.html
endpoint /echo

来自Tomcat官方demo

位置 Path
Server websocket.echo.EchoAnnotation(Annotation)
Server websocket.echo.EchoEndpoint(编程式声明)
Client single_message.html
endpoint1 /websocket/echoAnnotation
endpoint2 /websocket/echoProgrammatic

文件上传

在线聊天

位置 Path
Client websocket/chat.xhtml
Server websocket.chat.ChatAnnotation
endpoint /websocket/chat

相关资源(持续更新)