1

在 Groovy 中运行 Vert.x 服务器(Vert.x 1.3.0)并部署我们的模块和 web 模块,在端口 9099 上运行(我运行的其他任何东西都没有使用)。在 Firefox 和 Chrome 中,事件总线似乎永远保持打开状态,但在 IE 中,事件总线在几秒钟后关闭,我得到了这个:

java.io.IOException: An existing connection was forcibly closed by the remote host
at sun.nio.ch.SocketDispatcher.read0(Native Method)
at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:225)
at sun.nio.ch.IOUtil.read(IOUtil.java:193)
at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:359)
at org.jboss.netty.channel.socket.nio.NioWorker.read(NioWorker.java:59)
at org.jboss.netty.channel.socket.nio.AbstractNioWorker.processSelectedKeys(AbstractNioWorker.java:471)
at org.jboss.netty.channel.socket.nio.AbstractNioWorker.run(AbstractNioWorker.java:332)
at org.jboss.netty.channel.socket.nio.NioWorker.run(NioWorker.java:35)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
at java.lang.Thread.run(Thread.java:722)

此 vert.x 服务器的其他用户没有遇到此问题。有没有其他人看过这个?

4

1 回答 1

1

这是 1.3.1 中修复的错误。

我建议您使用 google 组来提问,因为我不经常扫描 stackoverflow。

于 2013-01-16T09:14:38.900 回答