QQ聊天功能Springboot

QQ聊天功能Springboot,第1张

QQ聊天功能Springboot(websocket)的实现 项目展示


服务器端
//刚建立连接时发送0,1

//收到客户消息时发送,
0私聊发送消息(对应服务器,3),
1群聊(对应服务器,4),
2同意好友(对应服务器,0,1)
拒绝好友(无对应服务器)

//断开连接时发送2

//0建立连接时加载所有用户,发给自己或对面
{
    "type": "0",
    "users": [
        {
            "img": "http://localhost:8080/imgs/2.png",
            "message": "对啊,我是想问你一个非常难的问题,不知道你会不会",
            "newsId": "101010",
            "name": "李四",
            "username": "13627048642"
        }
    ]
}
//1建立连接时加载在线用户,发给所有人
{
    "type": "1",
    "lineUsers": [
        "15170718283"
    ]
}
//2断开连接时加载离线用户,发给所有人
{
    "type": "2",
    "offLineUsers": "13033214654"
}
//3私聊发送给用户,发给对面
{
    "type": "3",
    "from": "13033214654",
    "text": "哈哈哈,可以"
}
//4群聊发送给用户,发给所有人
{
    "type": "4",
    "img": "http://localhost:8080/imgs/3.png",
    "num": 1,
    "name": "张三",
    "text": "6666"
}
客户端
//0私聊发送消息(对应服务器,3)
  let message = {
    type:'0',
    to:to.username,
    newsId:to.newsId,
    text:str
  }
//1群聊(对应服务器,4)
  let message = {
    type:'1',
    img:my.img,
    name:my.name,
    text:str
  }
//2同意好友(对应服务器,0,1)
  let data = {
    type:'2',
    username:item.username
  }
//3拒绝好友(无对应服务器)
  let data = {
    type:'3',
    username:item.username
  }
导入模块
        
        
            org.springframework.boot
            spring-boot-starter-websocket
        
websoket模块相关文件

数据库表的设计

项目源码链接

码云链接
或者线上地址体验功能
项目演示地址

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/795306.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-06
下一篇 2022-05-06

发表评论

登录后才能评论

评论列表(0条)

保存