Netty+SpringBoot+FastDFS+Html5實現聊天App,項目介紹。
Netty+SpringBoot+FastDFS+Html5實現聊天App,項目github鏈接。
本章完整代碼鏈接。
/** * @Description: 查詢我的好友列表 */ @PostMapping("/myFriends") public IMoocJSONResult myFriends(String userId) { // 0. userId 判斷不能為空 if (StringUtils.isBlank(userId)) { return IMoocJSONResult.errorMsg(""); } // 1. 數據庫查詢好友列表 List通過或忽略好友請求的接口myFirends = userService.queryMyFriends(userId); return IMoocJSONResult.ok(myFirends); }
定義枚舉類型
/** * * @Description: 忽略或者通過 好友請求的枚舉 */ public enum OperatorFriendRequestTypeEnum { IGNORE(0, "忽略"), PASS(1, "通過"); public final Integer type; public final String msg; OperatorFriendRequestTypeEnum(Integer type, String msg){ this.type = type; this.msg = msg; } public Integer getType() { return type; } public static String getMsgByType(Integer type) { for (OperatorFriendRequestTypeEnum operType : OperatorFriendRequestTypeEnum.values()) { if (operType.getType() == type) { return operType.msg; } } return null; } }
controller中提供通過或忽略好友請求的接口
/** * @Description: 接受方 通過或者忽略朋友請求 */ @PostMapping("/operFriendRequest") public IMoocJSONResult operFriendRequest(String acceptUserId, String sendUserId, Integer operType) { // 0. acceptUserId sendUserId operType 判斷不能為空 if (StringUtils.isBlank(acceptUserId) || StringUtils.isBlank(sendUserId) || operType == null) { return IMoocJSONResult.errorMsg(""); } // 1. 如果operType 沒有對應的枚舉值,則直接拋出空錯誤信息 if (StringUtils.isBlank(OperatorFriendRequestTypeEnum.getMsgByType(operType))) { return IMoocJSONResult.errorMsg(""); } if (operType == OperatorFriendRequestTypeEnum.IGNORE.type) { // 2. 判斷如果忽略好友請求,則直接刪除好友請求的數據庫表記錄 userService.deleteFriendRequest(sendUserId, acceptUserId); } else if (operType == OperatorFriendRequestTypeEnum.PASS.type) { // 3. 判斷如果是通過好友請求,則互相增加好友記錄到數據庫對應的表 // 然后刪除好友請求的數據庫表記錄 userService.passFriendRequest(sendUserId, acceptUserId); } // 4. 數據庫查詢好友列表 List添加好友功展示 通過搜索好友姓名添加好友myFirends = userService.queryMyFriends(acceptUserId); // 5. 將查詢到的好友列表返回給前端 return IMoocJSONResult.ok(myFirends); }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/73288.html
摘要:實現聊天,項目介紹。首先根據搜索的用戶的名稱查找是否存在這個用戶。如果搜索前置條件為成功,則向前端返回搜索用戶的信息。發送添加好友的請求判斷不能為空查詢用戶接受到的朋友申請最終實現效果 Netty+SpringBoot+FastDFS+Html5實現聊天App,項目介紹。Netty+SpringBoot+FastDFS+Html5實現聊天App,項目github鏈接。本章完整代碼鏈接。...
摘要:實現聊天,項目介紹。若該用戶不存在則記性注冊,根據前端傳入的信息構建對象,通過的將其保存入數據庫中。注意密碼需要使用工具類進行加密后再保存到數據庫中。對返回的路徑進行切割后得到縮略圖的路徑。通過的方法將二維碼圖片上傳到文件服務器中。 Netty+SpringBoot+FastDFS+Html5實現聊天App,項目介紹。Netty+SpringBoot+FastDFS+Html5實現聊天...
閱讀 2772·2021-11-19 11:30
閱讀 3058·2021-11-15 11:39
閱讀 1782·2021-08-03 14:03
閱讀 1985·2019-08-30 14:18
閱讀 2043·2019-08-30 11:16
閱讀 2149·2019-08-29 17:23
閱讀 2597·2019-08-28 18:06
閱讀 2533·2019-08-26 12:22