我正在使用Spring Boot应用程序开发应用程序服务器,但现在我想知道Spring中默认的最大(客户端请求)线程池大小是多少,如何定制该值?
假设您使用的是嵌入式Tomcat,Spring Boot使用该server.tomcat.max- threads属性来控制客户端请求线程池的大小。它的默认值为零,从而使Tomcat使用其默认值200。
server.tomcat.max- threads
要自定义此线程池的大小,应server.tomcat.max- threads在application.properties或application.yml文件中为属性指定一个非零值。
application.properties
application.yml