-
Notifications
You must be signed in to change notification settings - Fork 40.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a configuration property to customize the Tomcat connector's max parameter count #43275
Comments
Thanks for the suggestion, @rafaello7. It looks like the proposed property would map onto @violetagg is there a similar setting in Reactor Netty? |
@wilkinsona Reactor Netty does not parse the request line (query string), this is done by Spring Framework's parser. Also I can see that this configuration maxParameterCount is also relevant to multipart. Reactor Netty multipart implementation is not used by Spring Framework as it uses its own.
|
Thanks, Violeta. So we'd keep this as a web server-specific setting. I've opened #43280 for the Jetty side of things. |
Closing in favor of #43286. |
Tomcat has a limit of HTML form parameter count, which is 10000 by default. Currently the limit change is possible in Spring Boot only programmatically. On the other hand, the Undertow embedded server has a property server.undertow.max-parameters. Could it be possible to have such property for Tomcat also?
The text was updated successfully, but these errors were encountered: