springboot项目报错Request header is too large之解决方案

转载文章来源:https://blog.csdn.net/aa292016616/article/details/80599149

这是由于tomcat限制了header的长度,如果你请求的数据量超过了默认的长度就会抛出越界,

解决方法

    1.springboot是内置tomcat的所以不能修改tomcat的文件内容,在springboot的xxxx.yml加上

server:
  #tomcat:
    #max-http-post-size: -1
  max-http-header-size: 4048576


即可如果配置文件类型为xxxx.propertis则

server.max-http-header-size=4048576
 
如果报的是post的长度限制则加上,大小自己定义
max-http-post-size
2.修改tomcat中的server.xml

    在此处加上

 maxPostSize="8000000"
                 connectionTimeout="20000"
               redirectPort="8443" maxPostSize="8000000"/>

你可能感兴趣的:(springboot项目报错Request header is too large之解决方案)