当前位置:   article > 正文

SpringBoot集成开源IM框架MobileIMSDK,实现即时通讯IM聊天功能_im聊天开源框架

im聊天开源框架

一、前言

MobileIMSDK 是什么?

MobileIMSDK  是一套专门为移动端开发的开源IM即时通讯框架,超轻量级、高度提炼,一套API优雅支持UDP 、TCP 、WebSocket 三种协议,支持iOS、Android、H5、标准Java平台,服务端基于Netty编写。

工程地址是:

本文将实现:

  • 1)基于springboot 集成 MobileIMSDK;
  • 2)开发IM服务端;
  • 3)开发客户端;
  • 4)实现Java客户端与客户端之间的通信。

* 补充说明:本文所示Demo源码,请从文末“本文小结”的最后链接中下载!

二、SpringBoot 集成 MobileIMSDK 准备

2.1 MobileIMSDK下载

MobileIMSDK下载地址:

需要用到的lib包:

  • 1)服务端所需jar包: sdk_binary/Server/
  • 2)客服端所需jar包: sdk_binary/Client_TCP/java/

如下图所示:

2.2 pom.xml中引入相关依赖

由于这里是maven项目,其中一部分jar包可通过maven仓库直接引入,而其余的则通过外部jar包引入方式使用即可~

如下4个需作为外部jar包在pom.xml中引入 :

  1. <!-- [url=https://mvnrepository.com/artifact/com.google.code.gson/gson]https://mvnrepository.com/artifact/com.google.code.gson/gson[/url] -->
  2. <dependency>
  3.     <groupId>com.google.code.gson</groupId>
  4.     <artifactId>gson</artifactId>
  5.     <version>2.8.5</version>
  6. </dependency>
  7. <!-- MobileIMSDK所需jar包依赖[注:这里是在本地lib中引入,maven中央仓库中暂无此jar包],要与<includeSystemScope>true</includeSystemScope>配合使用-->
  8. <dependency>
  9.     <groupId>com.zhengqing</groupId>
  10.     <artifactId>MobileIMSDK4j</artifactId>
  11.     <scope>system</scope>
  12.     <systemPath>${project.basedir}/src/main/resources/lib/MobileIMSDK4j.jar</systemPath>
  13. </dependency>
  14. <dependency>
  15.     <groupId>com.zhengqing</groupId>
  16.     <artifactId>MobileIMSDKServerX_meta</artifactId>
  17.     <scope>system</scope>
  18.     <systemPath>${project.basedir}/src/main/resources/lib/MobileIMSDKServerX_meta.jar</systemPath>
  19. </dependency>
  20. <dependency>
  21.     <groupId>com.zhengqing</groupId>
  22.     <artifactId>swing-worker-1.2(1.6-)</artifactId>
  23.     <scope>system</scope>
  24.     <systemPath>${project.basedir}/src/main/resources/lib/swing-worker-1.2(1.6-).jar</systemPath>
  25. </dependency>
  26. <dependency>
  27.     <groupId>com.zhengqing</groupId>
  28.     <artifactId>MobileIMSDKServerX_netty</artifactId>
  29.     <scope>system</scope>
  30.     <systemPath>${project.basedir}/src/main/resources/lib/MobileIMSDKServerX_netty.jar</systemPath>
  31. </dependency>
  1. <plugins>
  2.     <!-- maven打包插件 -> 将整个工程打成一个 fatjar -->
  3.     <plugin>
  4.         <groupId>org.springframework.boot</groupId>
  5.         <artifactId>spring-boot-maven-plugin</artifactId>
  6.         <!-- 作用:项目打成jar,同时把本地jar包也引入进去 -->
  7.         <configuration>
  8.             <includeSystemScope>true</includeSystemScope>
  9.         </configuration>
  10.     </plugin>
  11. </plugins>

三、开发服务端

3.1 与客服端的所有数据交互事件(实现ServerEventListener类)

  1. public class ServerEventListenerImpl implements ServerEventListener {
  2.     private static Logger logger = LoggerFactory.getLogger(ServerEventListenerImpl.class);
  3.     /**
  4.      * 用户身份验证回调方法定义.
  5.      * <p>
  6.      * 服务端的应用层可在本方法中实现用户登陆验证。
  7.      * <br>
  8.      * 注意:本回调在一种特殊情况下——即用户实际未退出登陆但再次发起来登陆包时,本回调是不会被调用的!
  9.      * <p>
  10.      * 根据MobileIMSDK的算法实现,本方法中用户验证通过(即方法返回值=0时)后
  11.      * ,将立即调用回调方法 {@link #onUserLoginAction_CallBack(int, String, IoSession)}。
  12.      * 否则会将验证结果(本方法返回值错误码通过客户端的 ChatBaseEvent.onLoginMessage(int dwUserId, int dwErrorCode)
  13.      * 方法进行回调)通知客户端)。
  14.      *
  15.      * @param userId  传递过来的准一id,保证唯一就可以通信,可能是登陆用户名、也可能是任意不重复的id等,具体意义由业务层决定
  16.      * @param token   用于身份鉴别和合法性检查的token,它可能是登陆密码,也可能是通过前置单点登陆接口拿到的token等,具体意义由业务层决定
  17.      * @param extra   额外信息字符串。本字段目前为保留字段,供上层应用自行放置需要的内容
  18.      * @param session 此客户端连接对应的 netty “会话”
  19.      * @return 0 表示登陆验证通过,否则可以返回用户自已定义的错误码,错误码值应为:>=1025的整数
  20.      */
  21.     @Override
  22.     public int onVerifyUserCallBack(String userId, String token, String extra, Channel session) {
  23.         logger.debug("【DEBUG_回调通知】正在调用回调方法:OnVerifyUserCallBack...(extra="+ extra + ")");
  24.         return 0;
  25.     }
  26.     /**
  27.      * 用户登录验证成功后的回调方法定义(可理解为上线通知回调).
  28.      * <p>
  29.      * 服务端的应用层通常可在本方法中实现用户上线通知等。
  30.      * <br>
  31.      * 注意:本回调在一种特殊情况下——即用户实际未退出登陆但再次发起来登陆包时,回调也是一定会被调用。
  32.      *
  33.      * @param userId  传递过来的准一id,保证唯一就可以通信,可能是登陆用户名、也可能是任意不重复的id等,具体意义由业务层决定
  34.      * @param extra   额外信息字符串。本字段目前为保留字段,供上层应用自行放置需要的内容。为了丰富应用层处理的手段,在本回调中也把此字段传进来了
  35.      * @param session 此客户端连接对应的 netty “会话”
  36.      */
  37.     @Override
  38.     public void onUserLoginAction_CallBack(String userId, String extra, Channel session) {
  39.         logger.debug("【IM_回调通知OnUserLoginAction_CallBack】用户:"+ userId + " 上线了!");
  40.     }
  41.     /**
  42.      * 用户退出登录回调方法定义(可理解为下线通知回调)。
  43.      * <p>
  44.      * 服务端的应用层通常可在本方法中实现用户下线通知等。
  45.      *
  46.      * @param userId  下线的用户user_id
  47.      * @param obj
  48.      * @param session 此客户端连接对应的 netty “会话”
  49.      */
  50.     @Override
  51.     public void onUserLogoutAction_CallBack(String userId, Object obj, Channel session) {
  52.         logger.debug("【DEBUG_回调通知OnUserLogoutAction_CallBack】用户:"+ userId + " 离线了!");
  53.     }
  54.     /**
  55.      * 通用数据回调方法定义(客户端发给服务端的(即接收user_id="0")).
  56.      * <p>
  57.      * MobileIMSDK在收到客户端向user_id=0(即接收目标是服务器)的情况下通过
  58.      * 本方法的回调通知上层。上层通常可在本方法中实现如:添加好友请求等业务实现。
  59.      *
  60.      * <p style="background:#fbf5ee;border-radius:4px;">
  61.      * <b><font color="#ff0000">【版本兼容性说明】</font></b>本方法用于替代v3.x中的以下方法:<br>
  62.      * <code>public boolean onTransBuffer_CallBack(String userId, String from_user_id
  63.      * , String dataContent, String fingerPrint, int typeu, Channel session);
  64.      * </code>
  65.      *
  66.      * @param userId       接收方的user_id(本方法接收的是发给服务端的消息,所以此参数的值肯定==0)
  67.      * @param from_user_id 发送方的user_id
  68.      * @param dataContent  数据内容(文本形式)
  69.      * @param session      此客户端连接对应的 netty “会话”
  70.      * @return true表示本方法已成功处理完成,否则表示未处理成功。此返回值目前框架中并没有特殊意义,仅作保留吧
  71.      * @since 4.0
  72.      */
  73.     @Override
  74.     public boolean onTransBuffer_C2S_CallBack(Protocal p, Channel session) {
  75.         // 接收者uid
  76.         String userId = p.getTo();
  77.         // 发送者uid
  78.         String from_user_id = p.getFrom();
  79.         // 消息或指令内容
  80.         String dataContent = p.getDataContent();
  81.         // 消息或指令指纹码(即唯一ID)
  82.         String fingerPrint = p.getFp();
  83.         // 【重要】用户定义的消息或指令协议类型(开发者可据此类型来区分具体的消息或指令)
  84.         inttypeu = p.getTypeu();
  85.         logger.debug("【DEBUG_回调通知】[typeu="+ typeu + "]收到了客户端"+ from_user_id + "发给服务端的消息:str="+ dataContent);
  86.         returntrue;
  87.     }
  88.     /**
  89.      * 通道数据回调函数定义(客户端发给客户端的(即接收方user_id不为“0”的情况)).
  90.      * <p>
  91.      * <b>注意:</b>本方法当且仅当在数据被服务端成功在线发送出去后被回调调用.
  92.      * <p>
  93.      * 上层通常可在本方法中实现用户聊天信息的收集,以便后期监控分析用户的行为等^_^。
  94.      * <p>
  95.      * 提示:如果开启消息QoS保证,因重传机制,本回调中的消息理论上有重复的可能,请以参数 #fingerPrint
  96.      * 作为消息的唯一标识ID进行去重处理。
  97.      *
  98.      * <p style="background:#fbf5ee;border-radius:4px;">
  99.      * <b><font color="#ff0000">【版本兼容性说明】</font></b>本方法用于替代v3.x中的以下方法:<br>
  100.      * <code>public void onTransBuffer_C2C_CallBack(String userId, String from_user_id
  101.      * , String dataContent, String fingerPrint, int typeu);
  102.      *
  103.      * @param userId       接收方的user_id(本方法接收的是客户端发给客户端的,所以此参数的值肯定>0)
  104.      * @param from_user_id 发送方的user_id
  105.      * @param dataContent
  106.      * @since 4.0
  107.      */
  108.     @Override
  109.     public void onTransBuffer_C2C_CallBack(Protocal p) {
  110.         // 接收者uid
  111.         String userId = p.getTo();
  112.         // 发送者uid
  113.         String from_user_id = p.getFrom();
  114.         // 消息或指令内容
  115.         String dataContent = p.getDataContent();
  116.         // 消息或指令指纹码(即唯一ID)
  117.         String fingerPrint = p.getFp();
  118.         // 【重要】用户定义的消息或指令协议类型(开发者可据此类型来区分具体的消息或指令)
  119.         inttypeu = p.getTypeu();
  120.         logger.debug("【DEBUG_回调通知】[typeu="+ typeu + "]收到了客户端"+ from_user_id + "发给客户端"+ userId + "的消息:str="+ dataContent);
  121.     }
  122.     /**
  123.      * 通用数据实时发送失败后的回调函数定义(客户端发给客户端的(即接收方user_id不为“0”的情况)).
  124.      * <p>
  125.      * 注意:本方法当且仅当在数据被服务端<u>在线发送</u>失败后被回调调用.
  126.      * <p>
  127.      * <b>此方法存的意义何在?</b><br>
  128.      * 发生此种情况的场景可能是:对方确实不在线(那么此方法里就可以作为离线消息处理了)、
  129.      * 或者在发送时判断对方是在线的但服务端在发送时却没有成功(这种情况就可能是通信错误
  130.      * 或对方非正常通出但尚未到达会话超时时限)。<br><u>应用层在此方法里实现离线消息的处理即可!</u>
  131.      *
  132.      * <p style="background:#fbf5ee;border-radius:4px;">
  133.      * <b><font color="#ff0000">【版本兼容性说明】</font></b>本方法用于替代v3.x中的以下方法:<br>
  134.      * <code>public boolean onTransBuffer_C2C_RealTimeSendFaild_CallBack(String userId
  135.      * , String from_user_id, String dataContent, String fingerPrint, int typeu);
  136.      * </code>
  137.      *
  138.      * @param userId       接收方的user_id(本方法接收的是客户端发给客户端的,所以此参数的值肯定>0),此id在本方法中不一定保证有意义
  139.      * @param from_user_id 发送方的user_id
  140.      * @param dataContent  消息内容
  141.      * @param fingerPrint  该消息对应的指纹(如果该消息有QoS保证机制的话),用于在QoS重要机制下服务端离线存储时防止重复存储哦
  142.      * @return true表示应用层已经处理了离线消息(如果该消息有QoS机制,则服务端将代为发送一条伪应答包
  143.      * (伪应答仅意味着不是接收方的实时应答,而只是存储到离线DB中,但在发送方看来也算是被对方收到,只是延
  144.      * 迟收到而已(离线消息嘛))),否则表示应用层没有处理(如果此消息有QoS机制,则发送方在QoS重传机制超时
  145.      * 后报出消息发送失败的提示)
  146.      * @see #onTransBuffer_C2C_CallBack(Protocal)
  147.      * @since 4.0
  148.      */
  149.     @Override
  150.     public boolean onTransBuffer_C2C_RealTimeSendFaild_CallBack(Protocal p) {
  151.         // 接收者uid
  152.         String userId = p.getTo();
  153.         // 发送者uid
  154.         String from_user_id = p.getFrom();
  155.         // 消息或指令内容
  156.         String dataContent = p.getDataContent();
  157.         // 消息或指令指纹码(即唯一ID)
  158.         String fingerPrint = p.getFp();
  159.         // 【重要】用户定义的消息或指令协议类型(开发者可据此类型来区分具体的消息或指令)
  160.         inttypeu = p.getTypeu();
  161.         logger.debug("【DEBUG_回调通知】[typeu="+ typeu + "]客户端"+ from_user_id + "发给客户端"+ userId + "的消息:str="+ dataContent
  162.                 + ",因实时发送没有成功,需要上层应用作离线处理哦,否则此消息将被丢弃.");
  163.         returnfalse;
  164.     }
  165. }

3.2 服务端主动发起消息的QoS回调通知(实现MessageQoSEventListenerS2C类)

  1. public class MessageQoSEventS2CListnerImpl implements MessageQoSEventListenerS2C {
  2.     private static Logger logger = LoggerFactory.getLogger(MessageQoSEventS2CListnerImpl.class);
  3.     @Override
  4.     public void messagesLost(ArrayList<Protocal> lostMessages) {
  5.         logger.debug("【DEBUG_QoS_S2C事件】收到系统的未实时送达事件通知,当前共有"
  6.                 + lostMessages.size() + "个包QoS保证机制结束,判定为【无法实时送达】!");
  7.     }
  8.     @Override
  9.     public void messagesBeReceived(String theFingerPrint) {
  10.         if(theFingerPrint != null) {
  11.             logger.debug("【DEBUG_QoS_S2C事件】收到对方已收到消息事件的通知,fp="+ theFingerPrint);
  12.         }
  13.     }
  14. }

3.3 服务端配置

  1. public class ServerLauncherImpl extends ServerLauncher {
  2.     // 静态类方法:进行一些全局配置设置
  3.     static{
  4.         // 设置MobileIMSDK服务端的网络监听端口
  5.         ServerLauncherImpl.PORT = 7901;
  6.         // 开/关Demog日志的输出
  7.         QoS4SendDaemonS2C.getInstance().setDebugable(true);
  8.         QoS4ReciveDaemonC2S.getInstance().setDebugable(true);
  9.         ServerLauncher.debug = true;
  10.         // TODO 与客户端协商一致的心跳敏感模式设置
  11. //      ServerToolKits.setSenseMode(SenseMode.MODE_10S);
  12.         // 关闭与Web端的消息互通桥接器(其实SDK中默认就是false)
  13.         ServerLauncher.bridgeEnabled = false;
  14.         // TODO 跨服桥接器MQ的URI(本参数只在ServerLauncher.bridgeEnabled为true时有意义)
  15. //     BridgeProcessor.IMMQ_URI = "amqp://js:19844713@192.168.31.190";
  16.     }
  17.     // 实例构造方法
  18.     public ServerLauncherImpl() throws IOException {
  19.         super();
  20.     }
  21.     /**
  22.      * 初始化消息处理事件监听者.
  23.      */
  24.     @Override
  25.     protected void initListeners() {
  26.         // ** 设置各种回调事件处理实现类
  27.         this.setServerEventListener(newServerEventListenerImpl());
  28.         this.setServerMessageQoSEventListener(newMessageQoSEventS2CListnerImpl());
  29.     }
  30. }

3.4 服务端启动类

温馨小提示:这里由于小编将服务端和客户端集成在同一个项目中,因此如下配置:

  • SpringBoot的CommandLineRunner接口主要用于实现在服务初始化后,去执行一段代码块逻辑(run方法),这段初始化代码在整个应用生命周期内只会执行一次!
  • @Order(value = 1) :按照一定的顺序去执行,value值越小越先执行
  1. @Slf4j
  2. @Component
  3. @Order(value = 1)
  4. public class ChatServerRunner implements CommandLineRunner {
  5.     @Override
  6.     public void run(String... strings) throws Exception {
  7.         log.info("================= ↓↓↓↓↓↓ 启动MobileIMSDK服务端 ↓↓↓↓↓↓ =================");
  8.         // 实例化后记得startup哦,单独startup()的目的是让调用者可以延迟决定何时真正启动IM服务
  9.         final ServerLauncherImpl sli = new ServerLauncherImpl();
  10.         // 启动MobileIMSDK服务端的Demo
  11.         sli.startup();
  12.         // 加一个钩子,确保在JVM退出时释放netty的资源
  13.         Runtime.getRuntime().addShutdownHook(newThread(sli::shutdown));
  14.     }
  15. }

如果服务端与客户端不在同一个项目 ,服务端可直接通过如下方式启动即可~

四、开发客户端

4.1 客户端与IM服务端连接事件

  1. @Slf4j
  2. public class ChatBaseEventImpl implements ChatBaseEvent {
  3.     @Override
  4.     public void onLoginMessage(int dwErrorCode) {
  5.         if(dwErrorCode == 0) {
  6.             log.debug("IM服务器登录/连接成功!");
  7.         } else{
  8.             log.error("IM服务器登录/连接失败,错误代码:"+ dwErrorCode);
  9.         }
  10.     }
  11.     @Override
  12.     public void onLinkCloseMessage(int dwErrorCode) {
  13.         log.error("与IM服务器的网络连接出错关闭了,error:"+ dwErrorCode);
  14.     }
  15. }

4.2 接收消息事件

  1. @Slf4j
  2. public class ChatTransDataEventImpl implements ChatTransDataEvent {
  3.     @Override
  4.     public void onTransBuffer(String fingerPrintOfProtocal, String userid, String dataContent, inttypeu) {
  5.         log.debug("[typeu="+ typeu + "]收到来自用户"+ userid + "的消息:"+ dataContent);
  6.     }
  7.     @Override
  8.     public void onErrorResponse(int errorCode, String errorMsg) {
  9.         log.debug("收到服务端错误消息,errorCode="+ errorCode + ", errorMsg="+ errorMsg);
  10.     }
  11. }

4.3 消息是否送达事件

  1. @Slf4j
  2. public class MessageQoSEventImpl implements MessageQoSEvent {
  3.     @Override// 对方未成功接收消息的回调事件 lostMessages:存放消息内容
  4.     public void messagesLost(ArrayList<Protocal> lostMessages) {
  5.         log.debug("收到系统的未实时送达事件通知,当前共有"+ lostMessages.size() + "个包QoS保证机制结束,判定为【无法实时送达】!");
  6.     }
  7.     @Override// 对方成功接收到消息的回调事件
  8.     public void messagesBeReceived(String theFingerPrint) {
  9.         if(theFingerPrint != null) {
  10.             log.debug("收到对方已收到消息事件的通知,fp="+ theFingerPrint);
  11.         }
  12.     }
  13. }

4.4 MobileIMSDK初始化配置

  1. public class IMClientManager {
  2.     private static IMClientManager instance = null;
  3.     /**
  4.      * MobileIMSDK是否已被初始化. true表示已初化完成,否则未初始化.
  5.      */
  6.     privatebooleaninit = false;
  7.     public static IMClientManager getInstance() {
  8.         if(instance == null) {
  9.             instance = new IMClientManager();
  10.         }
  11.         return instance;
  12.     }
  13.     private IMClientManager() {
  14.         initMobileIMSDK();
  15.     }
  16.     public void initMobileIMSDK() {
  17.         if(!init) {
  18.             // 设置服务器ip和服务器端口
  19.             ConfigEntity.serverIP = "127.0.0.1";
  20.             ConfigEntity.serverPort = 8901;
  21.             // MobileIMSDK核心IM框架的敏感度模式设置
  22. //           ConfigEntity.setSenseMode(SenseMode.MODE_10S);
  23.             // 开启/关闭DEBUG信息输出
  24.             ClientCoreSDK.DEBUG = false;
  25.             // 设置事件回调
  26.             ClientCoreSDK.getInstance().setChatBaseEvent(newChatBaseEventImpl());
  27.             ClientCoreSDK.getInstance().setChatTransDataEvent(newChatTransDataEventImpl());
  28.             ClientCoreSDK.getInstance().setMessageQoSEvent(newMessageQoSEventImpl());
  29.             init = true;
  30.         }
  31.     }
  32. }

4.5 连接IM服务端,发送消息

服务类:

  1. public interface IChatService {
  2.     /**
  3.      * 登录连接IM服务器请求
  4.      *
  5.      * @param username: 用户名
  6.      * @param password: 密码
  7.      * @return: void
  8.      */
  9.     void loginConnect(String username, String password);
  10.     /**
  11.      * 发送消息
  12.      *
  13.      * @param friendId: 接收消息者id
  14.      * @param msg:      消息内容
  15.      * @return: void
  16.      */
  17.     void sendMsg(String friendId, String msg);
  18. }

服务实现类:

  1. @Slf4j
  2. @Service
  3. @Transactional(rollbackFor = Exception.class)
  4. public class ChatServiceImpl implements IChatService {
  5.     @Override
  6.     public void loginConnect(String username, String password) {
  7.         // 确保MobileIMSDK被初始化哦(整个APP生生命周期中只需调用一次哦)
  8.         // 提示:在不退出APP的情况下退出登陆后再重新登陆时,请确保调用本方法一次,不然会报code=203错误哦!
  9.         IMClientManager.getInstance().initMobileIMSDK();
  10.         // * 异步提交登陆名和密码
  11.         new LocalUDPDataSender.SendLoginDataAsync(username, password) {
  12.             /**
  13.              * 登陆信息发送完成后将调用本方法(注意:此处仅是登陆信息发送完成,真正的登陆结果要在异步回调中处理哦)。
  14.              * @param code 数据发送返回码,0 表示数据成功发出,否则是错误码
  15.              */
  16.             protected void fireAfterSendLogin(int code) {
  17.                 if(code == 0) {
  18.                     log.debug("数据发送成功!");
  19.                 } else{
  20.                     log.error("数据发送失败。错误码是:"+ code);
  21.                 }
  22.             }
  23.         }.execute();
  24.     }
  25.     @Override
  26.     public void sendMsg(String friendId, String msg) {
  27.         // 发送消息(异步提升体验,你也可直接调用LocalUDPDataSender.send(..)方法发送)
  28.         new LocalUDPDataSender.SendCommonDataAsync(msg, friendId) {
  29.             @Override
  30.             protected void onPostExecute(Integer code) {
  31.                 if(code == 0) {
  32.                     log.debug("数据已成功发出!");
  33.                 } else{
  34.                     log.error("数据发送失败。错误码是:"+ code + "!");
  35.                 }
  36.             }
  37.         }.execute();
  38.     }
  39. }

五、编写Controller进行测试

  1. @RestController
  2. @RequestMapping("/api")
  3. @Api(tags = "聊天测试-接口")
  4. public class ChatController {
  5.     @Autowired
  6.     private IChatService chatService;
  7.     @PostMapping(value = "/loginConnect", produces = Constants.CONTENT_TYPE)
  8.     @ApiOperation(value = "登陆请求", httpMethod = "POST", response = ApiResult.class)
  9.     public ApiResult loginConnect(@RequestParamString username, @RequestParamString password) {
  10.         chatService.loginConnect(username, password);
  11.         return ApiResult.ok();
  12.     }
  13.     @PostMapping(value = "/sendMsg", produces = Constants.CONTENT_TYPE)
  14.     @ApiOperation(value = "发送消息", httpMethod = "POST", response = ApiResult.class)
  15.     public ApiResult sendMsg(@RequestParam String friendId, @RequestParam String msg) {
  16.         chatService.sendMsg(friendId, msg);
  17.         return ApiResult.ok();
  18.     }
  19. }

启动项目,访问:http://127.0.0.1:8080/swagger-ui.html

1) loginConnect接口:

任意输入一个账号密码登录连接IM服务端:

控制台日志如下:

2)sendMsg接口:

给指定用户发送消息:这里由于只有一个客户端,上一步登录了一个admin账号,因此小编给admin账号(也就是自己) 发送消息

控制台日志如下:

六、本文小结

关于集成可参考MobileIMSDK给出的文档一步一步实现。

该开源工程对应的官方文档比较齐全,需要哪个端,就去看对应端的手册就好了。

1)Demo安装和使用

2)开发者指南

3)API文档

另外:作者给出了通过Java GUI编程实现的一个小demo,我们可以先将其运行起来,先体验一下功能,代码量也不是太多,我们可以通过debug方式查看执行流程。

清楚执行流程之后我们就可以将demo中的代码移植到我们自己的项目中加以修改运用于自己的业务中,切勿拿起就跑,否则一旦运气不好,将浪费更多的时间去集成,这样很不好!

最后:案例demo中相关代码注释都有,这里就简单说下整个流程吧:

  • 1)首先启动IM服务端
  • 2)用户在客户端登录一个用户与服务端建立连接保持通信( 客户端ChatServiceImpl中loginConnect方法为登录连接服务端事件;服务端ServerEventListenerImpl中onUserLoginVerify方法为服务端接收的上线通知事件);
  • 3)客户端通过 ChatServiceImpl中sendMsg方法发送一条消息,如果对方在线能接收消息则走服务端ServerEventListenerImpl中onTransferMessage4C2C方法,否则走onTransferMessage_RealTimeSendFaild方法;如果对方成功接收到消息,客户端将走MessageQoSEventImpl中messagesBeReceived事件,否则走messagesLost事件;
  • 4)客户端通过ChatMessageEvent中onRecieveMessage回调事件接收消息。

附:本文案例demo源码下载:

附录:更多IM聊天新手实践代码

  1. 跟着源码学IM(一):手把手教你用Netty实现心跳机制、断线重连机制
  2. 跟着源码学IM(二):自已开发IM很难?手把手教你撸一个Andriod版IM
  3. 跟着源码学IM(三):基于Netty,从零开发一个IM服务端
  4. 跟着源码学IM(四):拿起键盘就是干,教你徒手开发一套分布式IM系统
  5. 跟着源码学IM(五):正确理解IM长连接、心跳及重连机制,并动手实现
  6. 跟着源码学IM(六):手把手教你用Go快速搭建高性能、可扩展的IM系统
  7. 跟着源码学IM(七):手把手教你用WebSocket打造Web端IM聊天
  8. 跟着源码学IM(八):万字长文,手把手教你用Netty打造IM聊天
  9. 跟着源码学IM(九):基于Netty实现一套分布式IM系统
  10. 跟着源码学IM(十):基于Netty,搭建高性能IM集群(含技术思路+源码)
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/178583
推荐阅读
相关标签
  

闽ICP备14008679号