Set the maxParameterCount attribute on a connector

I get this error on tomcat7.

INFO: greater than the maximum number of request parameters (GET plus POST) for one request ([10000]). Any parameters outside this limit have been ignored. To change this limit, set maxParameterCount on the connector.

Can someone tell me if I can change maxParameterCount , and if so, how?

+4
source share
1 answer

Like this

 <Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" maxParameterCount="1000000"/> 

Look for details: http://tomcat.apache.org/tomcat-7.0-doc/config/http.html

+13
source

Source: https://habr.com/ru/post/1486205/


All Articles