计算机课程设计ssm在线聊天系统机器人聊天代码讲解安装调试文档报告

Posted qq_3157174470

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了计算机课程设计ssm在线聊天系统机器人聊天代码讲解安装调试文档报告相关的知识,希望对你有一定的参考价值。

🍊作者:计算机编程-吉哥

🍊简介:专业从事JavaWeb程序开发,微信小程序开发,定制化项目、源码、代码讲解、文档撰写、ppt制作。做自己喜欢的事,生活就是快乐的。

🍊心愿:点赞 👍 收藏 ⭐评论 📝

技术选型 

spring、springmvc、mybatis、maven、jsp 、mysql、jdk1.8 

数据库表结构

2张

开发工具: 

eclipse、navicat

功能:  

  • 聊天
  • 个人信息
  • 设置
  • 系统日志
  • 帮助
  • 关于
  • 注销 

 

 核心代码:

/**
 * websocket服务
 */
@ServerEndpoint(value = "/chatServer", configurator = HttpSessionConfigurator.class)
public class ChatServer 
    private static int onlineCount = 0; //静态变量,用来记录当前在线连接数。应该把它设计成线程安全的。
    private static CopyOnWriteArraySet<ChatServer> webSocketSet = new CopyOnWriteArraySet<ChatServer>();
    private Session session;    //与某个客户端的连接会话,需要通过它来给客户端发送数据
    private String userid;      //用户名
    private HttpSession httpSession;    //request的session

    private static List list = new ArrayList<>();   //在线列表,记录用户名称
    private static Map routetab = new HashMap<>();  //用户名和websocket的session绑定的路由表

    /**
     * 连接建立成功调用的方法
     * @param session  可选的参数。session为与某个客户端的连接会话,需要通过它来给客户端发送数据
     */
    @OnOpen
    public void onOpen(Session session, EndpointConfig config)
        this.session = session;
        webSocketSet.add(this);     //加入set中
        addOnlineCount();           //在线数加1;
        this.httpSession = (HttpSession) config.getUserProperties().get(HttpSession.class.getName());
        this.userid=(String) httpSession.getAttribute("userid");    //获取当前用户
        list.add(userid);           //将用户名加入在线列表
        routetab.put(userid, session);   //将用户名和session绑定到路由表
        String message = getMessage("[" + userid + "]加入聊天室,当前在线人数为"+getOnlineCount()+"位", "notice",  list);
        broadcast(message);     //广播
    

    /**
     * 连接关闭调用的方法
     */
    @OnClose
    public void onClose()
        webSocketSet.remove(this);  //从set中删除
        subOnlineCount();           //在线数减1
        list.remove(userid);        //从在线列表移除这个用户
        routetab.remove(userid);
        String message = getMessage("[" + userid +"]离开了聊天室,当前在线人数为"+getOnlineCount()+"位", "notice", list);
        broadcast(message);         //广播
    

    /**
     * 接收客户端的message,判断是否有接收人而选择进行广播还是指定发送
     * @param _message 客户端发送过来的消息
     */
    @OnMessage
    public void onMessage(String _message) 
        JSONObject chat = JSON.parseObject(_message);
        JSONObject message = JSON.parseObject(chat.get("message").toString());
        if(message.get("to") == null || message.get("to").equals(""))      //如果to为空,则广播;如果不为空,则对指定的用户发送消息
            broadcast(_message);
        else
            String [] userlist = message.get("to").toString().split(",");
            singleSend(_message, (Session) routetab.get(message.get("from")));      //发送给自己,这个别忘了
            for(String user : userlist)
                if(!user.equals(message.get("from")))
                    singleSend(_message, (Session) routetab.get(user));     //分别发送给每个指定用户
                
            
        
    

    /**
     * 发生错误时调用
     * @param error
     */
    @OnError
    public void onError(Throwable error)
        error.printStackTrace();
    

    /**
     * 广播消息
     * @param message
     */
    public void broadcast(String message)
        for(ChatServer chat: webSocketSet)
            try 
                chat.session.getBasicRemote().sendText(message);
             catch (IOException e) 
                e.printStackTrace();
                continue;
            
        
    

    /**
     * 对特定用户发送消息
     * @param message
     * @param session
     */
    public void singleSend(String message, Session session)
        try 
            session.getBasicRemote().sendText(message);
         catch (IOException e) 
            e.printStackTrace();
        
    

    /**
     * 组装返回给前台的消息
     * @param message   交互信息
     * @param type      信息类型
     * @param list      在线列表
     * @return
     */
    public String getMessage(String message, String type, List list)
        JSONObject member = new JSONObject();
        member.put("message", message);
        member.put("type", type);
        member.put("list", list);
        return member.toString();
    

    public  int getOnlineCount() 
        return onlineCount;
    

    public  void addOnlineCount() 
        ChatServer.onlineCount++;
    

    public  void subOnlineCount() 
        ChatServer.onlineCount--;
    

public class HttpSessionConfigurator extends ServerEndpointConfig.Configurator  
    @Override
    public void modifyHandshake(ServerEndpointConfig config, HandshakeRequest request, HandshakeResponse response)
        HttpSession httpSession = (HttpSession)request.getHttpSession();
        config.getUserProperties().put(HttpSession.class.getName(),httpSession);
    
@ServerEndpoint(value = "/videoServer", configurator = HttpSessionConfigurator.class)
public class VideoServer 
    private static final int MAX_CONNECTION = 20;
    private static final long MAX_TIMEOUT = 2 * 60 * 1000;
    private static final Map<String, String> usermap = Collections.synchronizedMap(new HashMap<String, String>());
    private static final Map<String, Session> sessions = Collections.synchronizedMap(new HashMap<String, Session>());

    @OnOpen
    public void onOpen(Session session)
        System.out.println("onOpen");
    

    @OnMessage
    public void onMessage(String message, Session session)

    

    @OnClose
    public void onClose(Session session)

    

    @OnError
    public void onError(Throwable error)
        error.printStackTrace();
    

 更多精彩文章栏目:计算机毕业设计项目

公众号:IT跃迁谷【更多精彩文章】

↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓如果大家有任何疑虑,请在下方昵称位置详细咨询。

以上是关于计算机课程设计ssm在线聊天系统机器人聊天代码讲解安装调试文档报告的主要内容,如果未能解决你的问题,请参考以下文章

计算机毕业设计之java+ssm在线培训教育平台

计算机课程设计SpringBoot在线心理咨询系统代码讲解+安装调试+文档指导

java计算机毕业设计ssm基于C程序课程的题库在线平台

Java毕业设计宠物商城系统ssm框架课程设计计算机软件开发

计算机毕业设计ssm垃圾分类系统Java开发课程设计项目指导安装调试运行

想聊天?自己搭建个聊天机器人吧!