问题⼀:去哪⼉配置?
核⼼配置在tomcat⽬录下conf/server.xml⽂件
问题⼆:怎么配置?
注意:
Tomcat 作为服务器的配置,主要是 server.xml ⽂件的配置;
server.xml中包含了 Servlet容器的相关配置,即 Catalina 的配置;
Xml ⽂件的讲解主要是标签的使⽤

主要标签结构如下:

  1. <!--
  2. Server 根元素,创建⼀个Server实例,⼦标签有 Listener、GlobalNamingResources、
  3. Service
  4. -->
  5. <Server>
  6. <!--定义监听器-->
  7. <Listener/>
  8. <!--定义服务器的全局JNDI资源 -->
  9. <GlobalNamingResources/>
  10. <!--
  11. 定义⼀个Service服务,⼀个Server标签可以有多个Service服务实例
  12. -->
  13. <Service/>
  14. </Server>

Server 标签

  1. <!--
  2. port:关闭服务器的监听端⼝
  3. shutdown:关闭服务器的指令字符串
  4. -->
  5. <Server port="8005" shutdown="SHUTDOWN">
  6. <!-- 以⽇志形式输出服务器 、操作系统、JVM的版本信息 -->
  7. <Listener className="org.apache.catalina.startup.VersionLoggerListener" />
  8. <!-- Security listener. Documentation at /docs/config/listeners.html
  9. <Listener className="org.apache.catalina.security.SecurityListener" />
  10. -->
  11. <!--APR library loader. Documentation at /docs/apr.html -->
  12. <!-- 加载(服务器启动) 和 销毁 (服务器停⽌) APR。 如果找不到APR库, 则会输出⽇志, 并
  13. 不影响 Tomcat启动 -->
  14. <Listener className="org.apache.catalina.core.AprLifecycleListener"
  15. SSLEngine="on" />
  16. <!-- Prevent memory leaks due to use of particular java/javax APIs-->
  17. <!-- 避免JRE内存泄漏问题 -->
  18. <Listener
  19. className="org.apache.catalina.core.JreMemoryLeakPreventionListener" />
  20. <!-- 加载(服务器启动) 和 销毁(服务器停⽌) 全局命名服务 -->
  21. <Listener
  22. className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
  23. <!-- 在Context停⽌时重建 Executor 池中的线程, 以避免ThreadLocal 相关的内存泄漏 -->
  24. <Listener
  25. className="org.apache.catalina.core.ThreadLocalLeakPreventionListener" />
  26. <!-- Global JNDI resources
  27. Documentation at /docs/jndi-resources-howto.html
  28. GlobalNamingResources 中定义了全局命名服务
  29. -->
  30. <GlobalNamingResources>
  31. <!-- Editable user database that can also be used by
  32. UserDatabaseRealm to authenticate users
  33. -->
  34. <Resource name="UserDatabase" auth="Container"
  35. type="org.apache.catalina.UserDatabase"
  36. description="User database that can be updated and saved"
  37. factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
  38. pathname="conf/tomcat-users.xml" />
  39. </GlobalNamingResources>
  40. <!-- A "Service" is a collection of one or more "Connectors" that share
  41. a single "Container" Note: A "Service" is not itself a "Container",
  42. so you may not define subcomponents such as "Valves" at this level.
  43. Documentation at /docs/config/service.html
  44. -->
  45. <Service name="Catalina">
  46. ...
  47. </Service>
  48. </Server>

Service 标签


  1. <!--
  2. 该标签⽤于创建 Service 实例,默认使⽤ org.apache.catalina.core.StandardService。
  3. 默认情况下,Tomcat 仅指定了Service 的名称, 值为 "Catalina"。
  4. Service ⼦标签为 : Listener、Executor、Connector、Engine,
  5. 其中:
  6. Listener ⽤于为Service添加⽣命周期监听器,
  7. Executor ⽤于配置Service 共享线程池,
  8. Connector ⽤于配置Service 包含的链接器,
  9. Engine ⽤于配置Service中链接器对应的Servlet 容器引擎
  10. -->
  11. <Service name="Catalina">
  12. ...
  13. </Service>

Executor 标签

  1. <!--
  2. 默认情况下,Service 并未添加共享线程池配置。 如果我们想添加⼀个线程池, 可以在
  3. <Service> 下添加如下配置:
  4. name:线程池名称,⽤于 Connector中指定
  5. namePrefix:所创建的每个线程的名称前缀,⼀个单独的线程名称为
  6. namePrefix+threadNumber
  7. maxThreads:池中最⼤线程数
  8. minSpareThreads:活跃线程数,也就是核⼼池线程数,这些线程不会被销毁,会⼀直存在
  9. maxIdleTime:线程空闲时间,超过该时间后,空闲线程会被销毁,默认值为6000(1分钟),单位
  10. 毫秒
  11. maxQueueSize:在被执⾏前最⼤线程排队数⽬,默认为Int的最⼤值,也就是⼴义的⽆限。除⾮特
  12. 殊情况,这个值 不需要更改,否则会有请求不会被处理的情况发⽣
  13. prestartminSpareThreads:启动线程池时是否启动 minSpareThreads部分线程。默认值为
  14. false,即不启动
  15. threadPriority:线程池中线程优先级,默认值为5,值从1到10
  16. className:线程池实现类,未指定情况下,默认实现类为
  17. org.apache.catalina.core.StandardThreadExecutor。如果想使⽤⾃定义线程池⾸先需要实现
  18. org.apache.catalina.Executor接⼝
  19. -->
  20. <Executor name="commonThreadPool"
  21. namePrefix="thread-exec-"
  22. maxThreads="200"
  23. minSpareThreads="100"
  24. maxIdleTime="60000"
  25. maxQueueSize="Integer.MAX_VALUE"
  26. prestartminSpareThreads="false"
  27. threadPriority="5"
  28. className="org.apache.catalina.core.StandardThreadExecutor"/>

Connector 标签

Connector 标签⽤于创建链接器实例
默认情况下,server.xml 配置了两个链接器,⼀个⽀持HTTP协议,⼀个⽀持AJP协议
⼤多数情况下,我们并不需要新增链接器配置,只是根据需要对已有链接器进⾏优化

  1. <!--
  2. port:
  3. 端⼝号,Connector ⽤于创建服务端Socket 并进⾏监听, 以等待客户端请求链接。如果该属性设置
  4. 为0, Tomcat将会随机选择⼀个可⽤的端⼝号给当前Connector 使⽤
  5. protocol:
  6. 当前Connector ⽀持的访问协议。 默认为 HTTP/1.1 , 并采⽤⾃动切换机制选择⼀个基于 JAVA
  7. NIO 的链接器或者基于本地APR的链接器(根据本地是否含有Tomcat的本地库判定)
  8. connectionTimeOut:
  9. Connector 接收链接后的等待超时时间, 单位为 毫秒。 -1 表示不超时。
  10. redirectPort:
  11. 当前Connector 不⽀持SSL请求, 接收到了⼀个请求, 并且也符合security-constraint 约束,
  12. 需要SSL传输,Catalina⾃动将请求重定向到指定的端⼝。
  13. executor:
  14. 指定共享线程池的名称, 也可以通过maxThreads、minSpareThreads 等属性配置内部线程池。
  15. URIEncoding:
  16. ⽤于指定编码URI的字符编码, Tomcat8.x版本默认的编码为 UTF-8 , Tomcat7.x版本默认为ISO-
  17. 8859-1
  18. -->
  19. <!--org.apache.coyote.http11.Http11NioProtocol , ⾮阻塞式 Java NIO 链接器-->
  20. <Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000"
  21. redirectPort="8443" />
  22. <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />

可以使⽤共享线程池

  1. <Connector port="8080"
  2. protocol="HTTP/1.1"
  3. executor="commonThreadPool"
  4. maxThreads="1000"
  5. minSpareThreads="100"
  6. acceptCount="1000"
  7. maxConnections="1000"
  8. connectionTimeout="20000"
  9. compression="on"
  10. compressionMinSize="2048"
  11. disableUploadTimeout="true"
  12. redirectPort="8443"
  13. URIEncoding="UTF-8" />

Engine 标签

Engine 表示 Servlet 引擎

  1. <!--
  2. name: ⽤于指定Engine 的名称, 默认为Catalina
  3. defaultHost:默认使⽤的虚拟主机名称, 当客户端请求指向的主机⽆效时, 将交由默认的虚拟主机处
  4. 理, 默认为localhost
  5. -->
  6. <Engine name="Catalina" defaultHost="localhost">
  7. ...
  8. </Engine>

Host 标签

Host 标签⽤于配置⼀个虚拟主机

  1. <Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true">
  2. ...
  3. </Host>

Context 标签

Context 标签⽤于配置⼀个Web应⽤,如下:

  1. <Host name="www.abc.com" appBase="webapps" unpackWARs="true"
  2. autoDeploy="true">
  3. <!--
  4. docBase:Web应⽤⽬录或者War包的部署路径。可以是绝对路径,也可以是相对于 Host appBase的
  5. 相对路径。
  6. path:Web应⽤的Context 路径。如果我们Host名为localhost, 则该web应⽤访问的根路径为:
  7. http://localhost:8080/web_demo。
  8. -->
  9. <Context docBase="/Users/yingdian/web_demo" path="/web3"></Context> <Valve className="org.apache.catalina.valves.AccessLogValve"
  10. directory="logs"
  11. prefix="localhost_access_log" suffix=".txt"
  12. pattern="%h %l %u %t &quot;%r&quot; %s %b" />
  13. </Host>