springboot websocket_Springboot下的WebSocket开发

今天遇到一个需求,需要对接第三方扫码跳转。一种方案是前端页面轮询后端服务,但是这种空轮询会虚耗资源,实时性比较差而且也不优雅。所以决定使用另一种方案,websocket。以前就知道websocket,属于全双工长连接,适合实时在线聊天,浏览器之间的协同编辑工作,多人在线游戏等场景。

但是一直没机会用,今天正好可以使用一下。

1c3f7478268d4619a7c35582dbca4622

简单记录一下步骤,亲测可用。

  1. 引入依赖
                org.springframework.boot          spring-boot-starter-websocket      

springboot已经非常贴心的为我们编写好了starter

  1. 配置config
@Configurationpublic class WebSocketConfig {  @Bean  public ServerEndpointExporter serverEndpointExporter() {      return new ServerEndpointExporter();  }}

必须有这个config,把ws服务暴露出去。

  1. 编写webSocket server
@Slf4j@Component@ServerEndpoint("/webSocket/{id}")public class MyWebSocket {    /**     * 静态变量 用来记录当前在线连接数     */    private static int onlineCount = 0;    /**     * 服务端与单一客户端通信 使用Map来存放 其中标识Key为id     */    private static ConcurrentMap webSocketMap = new ConcurrentHashMap<>();    //不需要区分可使用set    //private static CopyOnWriteArraySet webSocketSet = new CopyOnWriteArraySet();    public static ConcurrentMap getWebSocketMap() {        return webSocketMap;    }    /**     * 与某个客户端的连接会话 需要通过它来给客户端发送数据     */    private Session session;    /**     * 连接建立成功调用的方法     *     * @param session 可选的参数 session为与某个客户端的连接会话 需要通过它来给客户端发送数据     */    @OnOpen    public void onOpen(Session session, @PathParam("id") String id) {        this.session = session;        webSocketMap.put(id, this);        addOnlineCount();        log.info("有新连接加入,当前在线数为" + getOnlineCount());    }    /**     * 连接关闭调用的方法     */    @OnClose    public void onClose() {        Map map = session.getPathParameters();        webSocketMap.remove(Integer.parseInt(map.get("id")));        subOnlineCount();        log.info("有一连接关闭!当前在线数为" + getOnlineCount());    }    /**     * 收到客户端消息后调用的方法     *     * @param message 客户端发送过来的消息     * @param session 可选的参数     */    @OnMessage    public void onMessage(String message, Session session) {        log.info("来自客户端 " + session.getId() + " 的消息:" + message);    }    /**     * 发生错误时调用     *     * @param session     * @param error     */    @OnError    public void onError(Session session, Throwable error) {        log.error("LoginResultWebSocket 发生错误");        error.printStackTrace();    }    /**     * 发送消息     *     * @param message     * @throws IOException     */    public void sendMessage(String message) throws IOException {        this.session.getBasicRemote().sendText(message);    }    public static synchronized int getOnlineCount() {        return onlineCount;    }    public static synchronized void addOnlineCount() {        MyWebSocket.onlineCount++;    }    public static synchronized void subOnlineCount() {        MyWebSocket.onlineCount--;    }}

4.编写测试页面

页面代码就不贴了,网上很多,需要的可以看github,地址在文章最后。就是一个按钮打开socket链接。一个按钮向后端发送消息。一个用来展示从服务端收到的消息的p标签。

038f0c30c37d4be5be90b6cef6198a32

点击发送消息后,

15ce14943c0f4b4f9ddd10fc42cd75b7

可以看到,server端已经接收到。

然后测试页面也可以接收到消息。我写了一个请求,触发一下sendMessage方法。

11bfa76a10db475bbab5d10312eaec4d

总结

websocket入门使用还是很简单的,也很有趣。可以用来写个在线聊天室demo。

源码地址:

技术笔记与开源分享

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值