8:46:12,814 错误 [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/ecmfi].[action]] (http--192.168.192.38-8080-4) Servlet 操作的 Servlet.service() 引发异常:java.lang.IllegalStateException:参数处理失败。在 org.apache.tomcat.util.http.Parameters.processParameters(Parameters.java:407) [jbossweb-7.0.13.Final.jar:] 在 org.apache.tomcat.util.http.Parameters.processParameters(Parameters. java:428) [jbossweb-7.0.13.Final.jar:] at org.apache.tomcat.util.http.Parameters.handleQueryParameters(Parameters.java:183) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.connector.Request.parseParameters(Request.java:2811) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.connector.Request.getParameterNames(Request.java:1333) [ jbossweb-7.0.13.Final.jar:] 在 org.apache.catalina。
问问题
4408 次
3 回答
2
我在 JBoss / Spring 应用程序服务器上也遇到了这个异常。这是由于一个参数在表单中出现两次(同一路径的 2 次)。我建议确保表单中的所有字段以及提交的 URL 中的相应参数都是有效的。
于 2014-04-10T19:24:11.663 回答
1
I had this same problem today and discovered that it was due to an bad URL parameter. One of my parameters had no name and no value:
https://www.someurl.com?param1=A¶m2=B&=¶m3=c
Once I fixed the URL this error went away.
于 2013-04-18T16:20:37.697 回答
0
我猜这是 JBOSS AS-7.1.1 的一个已知问题。
关注这些话题
https://community.jboss.org/message/747210
到目前为止,唯一的解决方案似乎是降级到 JBoss AS 7.1.0。
于 2013-04-17T11:51:46.520 回答