InChat icon indicating copy to clipboard operation
InChat copied to clipboard

一个轻量级、高效率的支持多端(应用与硬件Iot)的可分布式、异步网络应用通讯框架

Results 23 InChat issues
Sort by recently updated
recently updated
newest added

Bumps [fastjson](https://github.com/alibaba/fastjson) from 1.2.54 to 1.2.83. Release notes Sourced from fastjson's releases. FASTJSON 1.2.83版本发布(安全修复) 这是一个安全修复版本,修复最近收到在特定场景下可以绕过autoType关闭限制的漏洞,建议fastjson用户尽快采取安全措施保障系统安全。 安全修复方案 :https://github.com/alibaba/fastjson/wiki/security_update_20220523 Issues 安全加固 修复JDK17下setAccessible报错的问题 #4077 下载 https://repo1.maven.org/maven2/com/alibaba/fastjson/1.2.83/ 文档 https://github.com/alibaba/fastjson/wiki/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98 源码 https://github.com/alibaba/fastjson/tree/1.2.83 fastjson 1.2.79版本发布,BUG修复 这又是一个bug...

dependencies

Bumps [gson](https://github.com/google/gson) from 2.8.5 to 2.8.9. Release notes Sourced from gson's releases. Gson 2.8.9 Make OSGi bundle's dependency on sun.misc optional (#1993). Deprecate Gson.excluder() exposing internal Excluder class (#1986). Prevent...

dependencies

我想问一下,channel.writeAndFlush()是由哪个线程来执行的?是否可以指定线程?

Bumps [junit](https://github.com/junit-team/junit4) from 4.12 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...

dependencies

@UncleCatMySelf use isSSL=true 使用chrome浏览器客户端未显示不安全的链接,导致添加不了证书。 ` open ssl success INFO - [DefaultWebSocketHandler.channelActive]/10.0.75.1:55663链接成功 INFO - [DefaultWebSocketHandler.exceptionCaught]/10.0.75.1:55663异常断开 INFO - [Handler:channelInactive]0.0.0.0/0.0.0.0:8070关闭成功 ERROR - [捕获异常:NotFindLoginChannlException]-[Handler:channelInactive] 关闭未正常注册链接! INFO - [DefaultWebSocketHandler.exceptionCaught]/10.0.75.1:55663异常断开 `

添加官方案例分支,并附带Netty相关的基础知识点讲解

用户上线时需要 获取未读的消息,未读信息可以自己业务里处理,需要框架提供用户上线通知方法。 用户下线时需要 告诉系统自己是下线状态,同用户上线一致

服务端 根据token判断用户是否在线方法 使用场景,当在线用户a发送信息给 离线用户b 后台需要判断b用户是否在线,如果不在线则把消息写到数据库中,并且标注为未读信息。 当用户上线时,读取自己的未读消息,进行查阅。