防止水管破裂的方法有哪些?
ClientAbortException: java.net.SocketException: Broken pipe
如果我没记错的话,当用户在最后一个操作完成之前中止当前操作或发出另一个请求时,就会发生这种情况。
这是否会反映在浏览用户身上,或者这(总是)只是 Catalinas 的例外情况?
有什么方法可以避免这种异常吗?
ClientAbortException: java.net.SocketException: Broken pipe
If I am wright, this happens when user aborts current operation or makes another request, before the last one is finished.
Can this reflects on browsing user or is this (always) just a Catalinas exception?
Are there any ways to avoid this exception?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试为您的网络应用程序中的所有资源定义一个过滤器,然后捕获并捕获它。丢弃那里的异常。我不确定它是否有效,但请尝试一下。
在 99% 的情况下,这个异常可以被忽略,因为它主要是由用户断开连接调用的(i-net 中断、用户点击停止、关闭浏览器等)
Try defining a filter for all resources in your webapp, and catch & discard the exception there. I'm not sure if it will work, but give it a try.
In 99% of the cases this exception can be ignored, because it's mainly called by user disconnects (i-net breaks, user hits stop, closes browser, etc)