您的位置:首页 > 理论基础 > 计算机网络

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

2012-12-12 16:54 627 查看
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、表单提交时,存在<inputname=""value="***" />这样的域 (name等于空串)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: