自学内容网 自学内容网

tomcat顶层元素之<server>

简介

Server 元素代表整个 Catalina servlet 容器。因此,它必须是conf/server.xml 配置文件中的单个最外层元素。它的属性代表了servlet容器整体的特征。

属性

通用属性

AttributeDescription
className

实现 org.apache.catalina.Server接口的Java类. 未指定, 则使用标准实现

address该服务器等待关闭命令的 TCP/IP 地址。如果未指定地址,则使用 localhost。
port

服务器等待关闭命令的 TCP/IP 端口号。设置为 -1 以禁用关闭端口。
注意:当使用 Apache Commons Daemon(在 Windows 上作为服务运行或在 un*xes 上与 jsvc 一起运行)启动 Tomcat 时,禁用关闭端口效果很好。但在使用标准 shell 脚本运行 Tomcat 时不能使用它,因为它会阻止 shutdown.bat|.sh 和 catalina.bat|.sh 正常停止它。

portOffset

应用到端口以及任何嵌套连接器的端口的偏移量。它必须是一个非负整数。如果未指定,则使用默认值 0。

shutdown为了关闭 Tomcat,必须通过与指定端口号的 TCP/IP 连接接收的命令字符串。
utilityThreads

该服务将用于各种实用任务(包括重复任务)的线程数。特殊值 0 将导致使用 Runtime.getRuntime().availableProcessors() 的值。负值将导致使用 Runtime.getRuntime().availableProcessors() + 负值,除非该值小于 1,在这种情况下将使用 1 个线程。默认值为 1。

标准实现

Server的标准实现是org.apache.catalina.core.StandardServer。它支持以下附加属性(除了上面列出的通用属性之外):

AttributeDescription
utilityThreadsAsDaemon

设置实用程序线程的守护进程标志值。默认值为 false。Set the daemon flag value for the utility threads. The default value is false.

periodicEventDelay

该值表示在此服务器上配置的生命周期侦听器的定期生命周期事件调用之间的延迟(以秒为单位)。该值以秒为单位,负值或零值将禁用调用。如果未指定,该属性的默认值为 10 秒。This value represents the delay in seconds between periodic lifecycle event invocation of the lifecycle listeners configured on this Server. The value is in seconds, and a negative or zero value will disable the invocations. If not specified, the default value for this attribute is 10 seconds.

嵌套组件

​​​​​​​Service - One or more service element.
GlobalNamingResources - Configure the JNDI global resources for the server.


原文地址:https://blog.csdn.net/fuxiaojun1988/article/details/143880654

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!