首页 > 编程语言 > 详细

java.lang.IllegalArgumentException: Request header is too large

时间:2017-02-10 23:22:33      阅读:629      评论:0      收藏:0      [点我收藏+]

ajax 提交时,默认采用的是 get提交方式,数据是放在头部的,数据量超过了限制,所以报错。

改成 post提交,将数据放到 body 中。解决问题。

其他解决方法:

<Connector port="8080" protocol="HTTP/1.1"
               connectionTimeout="20000"
               redirectPort="8443" maxHttpHeaderSize="65536" maxPostSize="4194304"  
               URIEncoding="UTF-8"/>


http://stackoverflow.com/questions/2472905/request-header-is-too-large


the proper solution is to add the following property under http-listener:

<property name="maxPostSize" value="xxxx" />

 

java.lang.IllegalArgumentException: Request header is too large

原文:http://www.cnblogs.com/digdeep/p/6388081.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!