tomcat顶层元素之<server>

简介

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

属性

通用属性

Attribute Description
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|.shcatalina.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。它支持以下附加属性(除了上面列出的通用属性之外):

Attribute Description
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.

相关推荐
xlsw_1 小时前
java全栈day20--Web后端实战(Mybatis基础2)
java·开发语言·mybatis
神仙别闹2 小时前
基于java的改良版超级玛丽小游戏
java
黄油饼卷咖喱鸡就味增汤拌孜然羊肉炒饭2 小时前
SpringBoot如何实现缓存预热?
java·spring boot·spring·缓存·程序员
暮湫3 小时前
泛型(2)
java
超爱吃士力架3 小时前
邀请逻辑
java·linux·后端
南宫生3 小时前
力扣-图论-17【算法学习day.67】
java·学习·算法·leetcode·图论
转码的小石3 小时前
12/21java基础
java
李小白663 小时前
Spring MVC(上)
java·spring·mvc
GoodStudyAndDayDayUp3 小时前
IDEA能够从mapper跳转到xml的插件
xml·java·intellij-idea
装不满的克莱因瓶4 小时前
【Redis经典面试题六】Redis的持久化机制是怎样的?
java·数据库·redis·持久化·aof·rdb