The Apache Tomcat Servlet/JSP Container

아파치 톰캣 7

Version 7.0.28-dev, Oct 2 2013
Apache Logo

Links

Top Level Elements

Executors

Connectors

Containers

Nested Components

Cluster Elements

Other

The Server Component

Table of Contents
Introduction

A Server element represents the entire Catalina servlet container. Therefore, it must be the single outermost element in the conf/server.xml configuration file. Its attributes represent the characteristics of the servlet container as a whole.

서버 요소는 전체 카탈리 나의 서블릿 컨테이너를 나타냅니다. 따라서 conf의 / server.xml 구성 파일의 단일 바깥쪽 요소 여야합니다. 그 특성은 전체적으로 서블릿 컨테이너의 특성을 나타냅니다.
Attributes
Common Attributes

All implementations of Server support the following attributes:

서버의 모든 구현은 다음과 같은 속성을 지원합니다
AttributeDescription
className

Java class name of the implementation to use. This class must implement the org.apache.catalina.Server interface. If no class name is specified, the standard implementation will be used.

사용하는 구현의 Java 클래스 이름. 이 클래스는 org.apache.catalina.Server 인터페이스를 구현해야합니다. 어떤 클래스 이름을 지정하지 않으면 표준 구현이 사용됩니다.
address

The TCP/IP address on which this server waits for a shutdown command. If no address is specified, localhost is used.

port

The TCP/IP port number on which this server waits for a shutdown command. Set to -1 to disable the shutdown port.

Note: Disabling the shutdown port works well when Tomcat is started using Apache Commons Daemon (running as a service on Windows or with jsvc on un*xes). It cannot be used when running Tomcat with the standard shell scripts though, as it will prevent shutdown.bat|.sh and catalina.bat|.sh from stopping it gracefully.

이 서버가 shutdown 명령을 기다립니다되는 TCP / IP 포트 번호입니다. 종료 포트를 비활성화하려면 -1로 설정합니다. 주 : 톰캣은 아파치 커먼즈 데몬을 (취소 * xes에 Windows 또는 jsvc과 서비스로 실행)를 사용하여 시작될 때 종료 포트를 비활성화하면 잘 작동합니다. 하지만 표준 쉘 스크립트와 Tomcat을 실행했을 때 그것이 정상적으로 그것을 멈추는에서 shutdown.bat.sh 및 catalina.bat.sh를 차단하므로 이것은 사용할 수 없습니다.
shutdown

The command string that must be received via a TCP/IP connection to the specified port number, in order to shut down Tomcat.

Tomcat을 종료하기 위해, 지정된 포트 번호로 TCP / IP 연결을 통해 접수되어야 명령 문자열입니다.
Standard Implementation

The standard implementation of Server is org.apache.catalina.core.StandardServer. It supports the following additional attributes (in addition to the common attributes listed above):

서버의 표준 구현은 org.apache.catalina.core.StandardServer입니다 그것은 다음과 같은 추가 속성을 지원합니다 (위에 나열된 일반적인 특성 외에도)
AttributeDescription
Nested Components

The following components may be nested inside a Server element:

다음 구성 요소가 서버 요소 안에 중첩 수 있습니다
  • Service - One or more service element.
  • 서비스 하나 이상의 서비스 요소입니다.
  • GlobalNamingResources - Configure the JNDI global resources for the server.
  • GlobalNamingResources 서버의 JNDI 글로벌 리소스를 구성합니다.
Special Features

There are no special features associated with a Server. 서버와 관련된 특별한 기능은 없습니다


Copyright © 1999-2013, Apache Software Foundation