包含 Java 实现的 websocket 的完整例子
一、 maven 主要依赖
<dependencies>
<!-- https://mvnrepository.com/artifact/javax.websocket/javax.websocket-api -->
<dependency>
<groupId>javax.websocket</groupId>
<artifactId>javax.websocket-api</artifactId>
<version>1.1</version>
<scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12 -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.25</version>
</dependency>
<!-- https://mvnrepository.com/artifact/log4j/log4j -->
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
</dependencies>
二、注解介绍
@ServerEndpoint
声明websocket地址,类似于Spring MVC中的@controller注解,websocket使用@ServerEndpoint来进行声明接口:@ServerEndpoint(value="/websocket/{paraName}") ; 其中 “ { } ”用来表示带参数的连接,如果需要获取{}中的参数在参数列表中增加:@PathParam(“paraName”) String userId 。
@OnOpen
有连接时的触发函数。 我们可以在用户连接时记录用户的连接带的参数,只需在参数列表中增加参数:@PathParam(“paraName”) String paraName。
@OnClose
连接关闭时的调用方法。
@OnMessage
收到消息时调用的函数,其中Session是每个websocket特有的数据成员
@OnError
发生意外错误时调用的函数
三、成员数据介绍
Session
每个Session代表了两个web socket断点的会话;当websocket握手成功后,websocket就会提供一个打开的Session,可以通过这个Session来对另一个端点发送数据;如果Session关闭后发送数据将会报错。
Session.getBasicRemote().sendText(“message”)
向该Session连接的用户发送字符串数据。
四、websocket-demo
https://github.com/ChaseDreamBoy/websocket-demo
五、jetty
项目使用 jetty 容器,启动方式: