springboot调优

application.properties

server.tomcat.max-connections=0 # Maximum number of connections that the server accepts and processes at any given time. 
server.tomcat.max-http-header-size=0 # Maximum size, in bytes, of the HTTP message header.
server.tomcat.max-http-post-size=0 # Maximum size, in bytes, of the HTTP post content.
server.tomcat.max-threads=0 # Maximum number of worker threads.
server.tomcat.min-spare-threads=0 # Minimum number of worker threads.
原文地址:https://www.cnblogs.com/wangpeili/p/10715996.html