Spring Boot 程序 Tomcat 是内嵌在程序里面的,我们可以通过下面配置对 Tomcat 进行参数调优,提高系统吞吐量。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
server:
port: 8113
tomcat:
uri-encoding: utf-8
# 单核心CPU默认200线程,线上是4核心
max-threads: 800
# 等待队列
accept-count: 1000
# 最大连接数 默认的是 8192
max-connections: 20000
# 最小的 空闲队列数:默认10
min-spare-threads: 100
spring:
application:
name: service-a
servlet:
multipart:
max-request-size: 50MB
max-file-size: 50MB