2021
08-08
08-08
springboot tomcat最大线程数与最大连接数解析
springboottomcat最大线程数与最大连接数首先看看springboot内置的tomcat,该如何配置这两个参数#在配置文件中添加如下内容#tomcat最大线程数,默认为200server.tomcat.max-threads=200#tomcat最大连接数,默认为10000(网上的说法)server.tomcat.max-connections=300如何理解上面两个参数为了方便理解,我这里使用了springboot编写了一个简单了的服务,包含一个模拟登录的接口,并使用jmeter进行测试,不了解jmeter如何使用...
继续阅读 >