SpringBoot 整合WebSocket 简单实战案例

两个页面分别模拟不同用户接入websocket。

------接下来,我们开始整合WebSocket------

先是pom.xml添加依赖:

org.springframework.boot

spring-boot-starter-websocket

PS:application.properties不需要添加任何配置 ,我只设置了一下服务server.port=8083

接着,创建节点配置类WebSocketStompConfig.java:

import org.springframework.context.annotation.Bean;

import org.springframework.context.annotation.Configuration;

import org.springframework.web.socket.server.standard.ServerEndpointExporter;

@Configuration

public class WebSocketStompConfig {

//这个bean的注册,用于扫描带有@ServerEndpoint的注解成为websocket ,如果你使用外置的tomcat就不需要该配置文件

@Bean

public ServerEndpointExporter serverEndpointExporter()

{

return new ServerEndpointExporter();

}

}

然后是WebSocket配置类,WebSocket.java:

(这里面包含这单独发送消息,群发,监听上下线等等方法)

import java.io.IOException;

import java.util.ArrayList;

import java.util.List;

import java.util.Map;

import java.util.Set;

import java.util.concurrent.ConcurrentHashMap;

import java.util.concurrent.CopyOnWriteArraySet;

import java.util.concurrent.atomic.AtomicInteger;

import javax.websocket.OnClose;

import javax.websocket.OnError;

import javax.websocket.OnMessage;

import javax.websocket.OnOpen;

import javax.websocket.Session;

import javax.websocket.server.PathParam;

import javax.websocket.server.ServerEndpoint;

import com.alibaba.fastjson.JSON;

import com.alibaba.fastjson.JSONObject;

import com.google.common.collect.Maps;

import org.slf4j.Logger;

import org.slf4j.LoggerFactory;

import org.springframework.stereotype.Component;

/**

  • @Author:JCccc

  • @Description:

  • @Date: created in 15:56 2019/5/13

*/

@Component

@ServerEndpoint(value = “/connectWebSocket/{userId}”)

public class WebSocket {

private Logger logger = LoggerFactory.getLogger(this.getClass());

/**

  • 在线人数

*/

public static int onlineNumber = 0;

/**

  • 以用户的姓名为key,WebSocket为对象保存起来

*/

private static Map<String, WebSocket> clients = new ConcurrentHashMap<String, WebSocket>();

/**

  • 会话

*/

private Session session;

/**

  • 用户名称

*/

private String userId;

/**

  • 建立连接

  • @param session

*/

@OnOpen

public void onOpen(@PathParam(“userId”) String userId, Session session)

{

onlineNumber++;

logger.info(“现在来连接的客户id:”+session.getId()+“用户名:”+userId);

this.userId = userId;

this.session = session;

// logger.info(“有新连接加入! 当前在线人数” + onlineNumber);

try {

//messageType 1代表上线 2代表下线 3代表在线名单 4代表普通消息

//先给所有人发送通知,说我上线了

Map<String,Object> map1 = Maps.newHashMap();

map1.put(“messageType”,1);

map1.put(“userId”,userId);

sendMessageAll(JSON.toJSONString(map1),userId);

//把自己的信息加入到map当中去

clients.put(userId, this);

logger.info(“有连接关闭! 当前在线人数” + clients.size());

//给自己发一条消息:告诉自己现在都有谁在线

Map<String,Object> map2 = Maps.newHashMap();

map2.put(“messageType”,3);

//移除掉自己

Set set = clients.keySet();

map2.put(“onlineUsers”,set);

sendMessageTo(JSON.toJSONString(map2),userId);

}

catch (IOException e){

logger.info(userId+“上线的时候通知所有人发生了错误”);

}

}

@OnError

public void onError(Session session, Throwable error) {

logger.info(“服务端发生了错误”+error.getMessage());

//error.printStackTrace();

}

/**

  • 连接关闭

*/

@OnClose

public void onClose()

{

onlineNumber–;

//webSockets.remove(this);

clients.remove(userId);

try {

//messageType 1代表上线 2代表下线 3代表在线名单 4代表普通消息

Map<String,Object> map1 = Maps.newHashMap();

map1.put(“messageType”,2);

map1.put(“onlineUsers”,clients.keySet());

map1.put(“userId”,userId);

sendMessageAll(JSON.toJSONString(map1),userId);

}

catch (IOException e){

logger.info(userId+“下线的时候通知所有人发生了错误”);

}

//logger.info(“有连接关闭! 当前在线人数” + onlineNumber);

logger.info(“有连接关闭! 当前在线人数” + clients.size());

}

/**

  • 收到客户端的消息

  • @param message 消息

  • @param session 会话

*/

@OnMessage

public void onMessage(String message, Session session)

{

try {

logger.info(“来自客户端消息:” + message+“客户端的id是:”+session.getId());

System.out.println(“------------ :”+message);

JSONObject jsonObject = JSON.parseObject(message);

String textMessage = jsonObject.getString(“message”);

String fromuserId = jsonObject.getString(“userId”);

String touserId = jsonObject.getString(“to”);

//如果不是发给所有,那么就发给某一个人

//messageType 1代表上线 2代表下线 3代表在线名单 4代表普通消息

Map<String,Object> map1 = Maps.newHashMap();

map1.put(“messageType”,4);

map1.put(“textMessage”,textMessage);

map1.put(“fromuserId”,fromuserId);

if(touserId.equals(“All”)){

map1.put(“touserId”,“所有人”);

sendMessageAll(JSON.toJSONString(map1),fromuserId);

}

else{

map1.put(“touserId”,touserId);

System.out.println(“开始推送消息给”+touserId);

sendMessageTo(JSON.toJSONString(map1),touserId);

}

}

catch (Exception e){

e.printStackTrace();

logger.info(“发生了错误了”);

}

}

public void sendMessageTo(String message, String TouserId) throws IOException {

for (WebSocket item : clients.values()) {

// System.out.println(“在线人员名单 :”+item.userId.toString());

if (item.userId.equals(TouserId) ) {

item.session.getAsyncRemote().sendText(message);

break;

}

}

}

public void sendMessageAll(String message,String FromuserId) throws IOException {

for (WebSocket item : clients.values()) {

item.session.getAsyncRemote().sendText(message);

}

}

public static synchronized int getOnlineCount() {

return onlineNumber;

}

}

接下来用一个HTML5 页面 index.html,连接当前的WebSocket节点,接/发消息, index.html:

Test My WebSocket

TestWebSocket

SEND MESSAGE

CLOSE

  • 12
    点赞
  • 11
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值