Websocket主要做消息推送,简单,轻巧,比comet好用 入门了解:https://www.cnblogs.com/xdp-gacl/p/5193279.html /** * A Web Socket session represents a conversation between two web socket endpoints. As soon * as the websocket handshake completes successfully, the web socket im…
WebsocketConfig.java @Configuration public class WebSocketConfig { @Bean public ServerEndpointExporter serverEndpointExporter() { return new ServerEndpointExporter(); } } WebsocketServer.java @Log4j @Component @ServerEndpoint("/websocket/{id}")…