hprose-java icon indicating copy to clipboard operation
hprose-java copied to clipboard

Hprose is a cross-language RPC. This project is Hprose 2.0 for Java

Results 14 hprose-java issues
Sort by recently updated
recently updated
newest added

场景复现: 1、服务端,每秒钟推送一次 public static void main(String[] args)throws Exception{ HproseTcpServer server=new HproseTcpServer("tcp://127.0.0.1:4321"); server.publish("time",12000,3000); server.start(); Timer timer=new Timer(); timer.schedule(new TimerTask() { @Override public void run() { System.out.println(LocalDateTime.now()+" "+ JSON.toJSONString(server.idlist("time") )+" "+ LocalTime.now().getSecond());...

再请教一个问题,是关于hprose for Java的,为什么用HproseServlet发布的方法,用浏览器打开会变成下载,并不是显示可以调用的方法,这个有办法解决么?

堆外内存会随请求数增加而增加吗?如果没设置 -XX:MaxDirectMemorySize参数。我看到代码里有这个ThreadLocal byteBufferPool,没怎么理解

获取方法列表时返回的是乱码 ![image](https://user-images.githubusercontent.com/6354958/83507163-c1e4d480-a4fa-11ea-892a-fafa4b583b72.png)

hprose-php 做服务端,hprose-java做客户端 结合 springmvc idea里能正常启动tomcat,没有错误信息,并且可以访问到hprose-php服务端的数据。 但关闭tomcat时,提示如下: 严重 [main] org.apache.catalina.loader.WebappClassLoaderBase.checkThreadLocalMapForLeaks The web application [ROOT] created a ThreadLocal with key of type [hprose.io.ByteBufferStream$1] (value [hprose.io.ByteBufferStream$1@5f3a4b84]) and a value of type [hprose.io.ByteBufferStream.ByteBufferPool] (value...

> WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by hprose.io.access.ConstructorAccessor (file:/home/jiangliuer/Documents/gradle_cache/caches/modules-2/files-2.1/org.hprose/hprose-java/2.0.38/f76814f7b7cb685786568faf9502e1e643112e27/hprose-java-2.0.38.jar) to method java.io.ObjectStreamClass.newInstance() WARNING: Please consider reporting this to the maintainers of hprose.io.access.ConstructorAccessor WARNING:...

服务端使用的Nodejs 有时服务端重启后,需要杀掉APP才能重连服务器,有时又会自动连接

1、服务端使用hprose-nodejs 2、安卓上使用hprose-java 在使用中发现,当订阅数超过3个时,会造成invoke调用返回变得缓慢 现在改成只使用两个订阅,用字段进行区分