tomcat控制台错误_http请求参数格式错误

2012-7-6 10:56:01 org.apache.tomcat.util.http.Parameters processParameters
信息: Invalid chunk starting at byte [54] and ending at byte [54] with a value of [null] ignored
2012-7-6 10:56:01 org.apache.tomcat.util.http.Parameters processParameters
信息: Invalid chunk starting at byte [56] and ending at byte [56] with a value of [null] ignored
2012-7-6 10:56:01 org.apache.tomcat.util.http.Parameters processParameters
信息: Invalid chunk starting at byte [59] and ending at byte [59] with a value of [null] ignored
2012-7-6 10:56:01 org.apache.tomcat.util.http.Parameters processParameters
信息: Invalid chunk starting at byte [62] and ending at byte [62] with a value of [null] ignored
2012-7-6 10:56:01 org.apache.tomcat.util.http.Parameters processParameters
信息: Invalid chunk starting at byte [65] and ending at byte [65] with a value of [null] ignored
2012-7-6 10:56:01 org.apache.tomcat.util.http.Parameters processParameters
信息: Invalid chunk starting at byte [67] and ending at byte [67] with a value of [null] ignored

 

2011-3-29 9:31:57 org.apache.tomcat.util.http.Parameters processParameters
警告: Parameters: Invalid chunk ignored. 原因:
url链接带参数,参数写法有误时候提示.

造成以上问题的有这么几种原因:
1、访问/test.jsp?&p1=1&p2=2...
2、访问/test.jsp?p1=1&p2=&p3=3...
3、访问/test.jsp?p1=1&&p2=2...
4、访问/test.jsp?action =save&.... (action后面有个空格)
5、表单提交时,存在这样的域 (name等于空串)

你可能感兴趣的:(java)