springboot调优

2019-04-18 08:53:36来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

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
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Java基础-多态

下一篇:零基础入门学习java第十五节:对象的比较