The Apache Tomcat Servlet/JSP Container

Apache Tomcat 5.5 Servlet/JSP 容器

Jaxmao Logo

Links

Top Level Elements

Connectors

Containers

Nested Components

Apache Tomcat Configuration Reference

服务组件

Printer Friendly Version
print-friendly
version
Introduction

一个Service元素代表一个或多个连接器(Connector)组件的组合,这些连接器组件共享一个Engine component来处理进入的请求。一个或多个Service元素可以嵌套在一个Server(服务器)元素里面。

Attributes
Common Attributes

Service的所有实现支持下列属性:

AttributeDescription
className

要使用的implementation的Java类名。这个类必须执行org.apache.catalina.Service 接口。如果没有指定类名,将使用标准实现。

name

这个Service元素所显示的名字,如果你使用标准的Catalina组件,它会被包括在log messages里面。每个与某一特殊的Server(服务器)相关联的Service的名字必须是独特的。

Standard Implementation

这个Service的标准实现是org.apache.catalina.core.StandardService 。它支持下面其他属性(除了上面列出的通用属性外):

AttributeDescription
Nested Components

唯一的能够嵌套在一个Service元素里的组件是一个或多个Connector元素,后面紧跟着一个(仅仅一个)Engine元素。

Special Features

Service元素没有任何专有特征。


Copyright © 1999-2006, Apache Software Foundation