大意就是:
apache tomcat為各行各業和組織中的眾多大型,關鍵的web應用程式提供支援。
那麼tomcat在我們的專案中使用的時候,配置的引數都有哪些,值是多少呢?
server.port=8081
server.tomcat.accept-count=1000
server.tomcat.max-connections=20000
server.tomcat.max-threads=1000
server.tomcat.min-spare-threads=100
server.tomcat.uri-encoding=utf-8
server.connection-timeout=20000
server
:port
:8081
tomcat
:# 佇列長度
accept-count
:1000
# 最大連線數
max-connections
:20000
# 最大執行緒數
max-threads
:500
# 最小空閒執行緒數
min-spare-threads
:100
# 編碼格式
uri‐encoding
: utf-
8#超時時間
connection-timeout
:20000
關於配置的原始碼可以看一下tomcat的原始碼:serverproperties.class
注:專案是springboot專案,所以這個class檔案是在org.springframework.boot.spring-boot-autoconfigure包下的spring-boot-autoconfigure-2.x.x.release.jar
tomcat介紹:
更全的tomcat配置引數請見部落格:
--------------你知道的越多,不知道的越多-------------
tomcat引數配置
找到d program files apache tomcat 7.0.41 conf server.xml 找到這個下圖這個位置 minprocessors 最小空閒連線線程數,用於提高系統處理效能,預設值為 10 maxprocessors 最大連線線程數,即 併發處理的最大請求數,預設值為 7...
Tomcat6配置引數詳解
tomcat6的配置引數如下表所示。注 tomcat6的各個小版本可能部分配置有個別出入的地方。官方文件參見 屬性 描述 enablelookups 如果希望呼叫request.getremotehost 進行dns查詢,以返回遠端客戶的實際主機名,將enablelookups設為true。如果希望...
tomcat相關引數
maxthreads 800 minsparethreads 10 maxsparethreads 800 maxprocessors 2000 minprocessors 20 acceptcount 2000 connectiontimeout 60000 enableloopups false...