springboot http连接数
时间: 2023-07-11 21:53:00 浏览: 151
[] - 2023-08-22 SpringBoot 最大连接数及最大并发数是多少???.pdf
Spring Boot 默认使用 Tomcat 作为 Web 服务器,Tomcat 的最大连接数可以通过配置文件进行修改。在 application.properties 文件中可以添加以下配置:
```
#最大连接数
server.tomcat.max-connections=1000
#最大线程数
server.tomcat.max-threads=200
```
其中,server.tomcat.max-connections 是最大连接数,server.tomcat.max-threads 是最大线程数。可以根据实际需求进行修改。另外,还可以通过使用其他 Web 服务器,如 Jetty 或 Undertow,来达到不同的连接数需求。
阅读全文