WebSphere Liberty 18.0.0.1 post 参数限制
WebSphere Liberty 18.0.0.1 post parameters limit
在我们 运行 在 WebSphere Liberty 18.0.0.1 上的 Web 应用程序中,我们遇到了这个错误:
exceeding maximum parameters allowed per request 10 000 current 10 000 cannot add more
之前,该应用程序部署在 WAS(传统)8.5.5.x 上,我们有此自定义 属性:"com.ibm.ws.webcontainer.maxParamPerRequest": "-1"
。
但是我在 Liberty 上找不到任何配置。
检查此 post Enabling UNLIMITED parameter requests。
对于 Liberty,您可以像这样在 server.xml
中设置它:
<webContainer maxParamPerRequest="-1"/>
检查它是否能解决您的问题。
在我们 运行 在 WebSphere Liberty 18.0.0.1 上的 Web 应用程序中,我们遇到了这个错误:
exceeding maximum parameters allowed per request 10 000 current 10 000 cannot add more
之前,该应用程序部署在 WAS(传统)8.5.5.x 上,我们有此自定义 属性:"com.ibm.ws.webcontainer.maxParamPerRequest": "-1"
。
但是我在 Liberty 上找不到任何配置。
检查此 post Enabling UNLIMITED parameter requests。
对于 Liberty,您可以像这样在 server.xml
中设置它:
<webContainer maxParamPerRequest="-1"/>
检查它是否能解决您的问题。