最近在研究tomcat的连接超时问题,环境:jdk1.8 + springboot 2.1.1.RELEASE,以下仅为个人理解,如果异议,欢迎指正. springboot的tomcat的几个配置参数: server: port: 8085 servlet: context-path: /test tomcat: max-threads: 1 #最大线程数,默认200 accept-count: 1 #挂起的最大连接数,默认100,最终会体现在这里 public abstract ServerS…