WebSocket protocol 是HTML5一种新的协议。它实现了浏览器与服务器全双工通信(full-duplex)。具体说明请查阅相关资料,下面我来演示一种简单的页面与服务器通信的简单样例。新建个web工程(基于tomcat-7版本(6以下的版本未实现webSocket功能))引入tomcat/lib目录下的tomcat7-websocket.jar和websocket-api.jar添加到classpath中新建WebSocketConfig.java如下
本次采用注解方式import java.util.Set;import javax.websocket.Endpoint;import javax.websocket.server.ServerApplicationConfig;import javax.websocket.server.ServerEndpointConfig;public class WebSocketConfig implements ServerApplicationConfig{ @Override public Set getEndpointConfigs( Set> scanned) { return null; } @Override public Set> getAnnotatedEndpointClasses(Set> scanned) { //返回scanned return scanned; }}
转载请保留本文网址:
http://www.shaoqun.com/a/197642.html