Glassfish 3.1 最大 URI 长度
我在使用长 GET 请求时遇到此错误:
严重:GRIZZLY0039:请求 URI 是 太大了。 java.nio.BufferOverflowException
我必须为 Glassfish 3.1 更改什么配置?
我尝试更改这些参数但没有成功: - header-buffer-length-bytes(通过管理控制台) - request-body-buffer-size-bytes(在domain.xml中)
谢谢。
I'm having this error when using a long GET request:
SEVERE: GRIZZLY0039: Request URI is
too large.
java.nio.BufferOverflowException
What is the configuration I have to change for Glassfish 3.1?
I tried changing these parameters but had no success :
- header-buffer-length-bytes (through admin console)
- request-body-buffer-size-bytes (in domain.xml)
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们在将大型应用程序部署到集群中时遇到了同样的问题(独立部署正常)。对我们有用的解决方案是增加 TCP 缓冲区大小。
在管理控制台中更改
'配置->集群配置->网络配置->运输 -> TCP->缓冲区大小' 为 131072 或更大。
希望有帮助。 ——温特穆特
We had the same problem while deploying a large application into a cluster (standalone deployment was working). A solution, that worked for us was to increase the TCP buffer size.
In the administration console change
'Configurations -> cluster-config -> Network Config -> Transports -> tcp -> Buffer Size' to 131072 or more.
Hope that helps. -- Wintermute