alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Tomcat example source code file (index.xml)

This example Tomcat source code file (index.xml) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Tomcat tags/keywords

apache, asf, components, components, container, java, license, license, represent, represent, see, the, the, you

The Tomcat index.xml source code

<?xml version="1.0"?>
<!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
  this work for additional information regarding copyright ownership.
  The ASF licenses this file to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->
<!DOCTYPE document [
  <!ENTITY project SYSTEM "project.xml">
]>
<document url="index.html">

  &project;

  <properties>
    <author email="craigmcc@apache.org">Craig R. McClanahan
    <title>Overview
  </properties>

<body>


<section name="Overview">

<p>This manual contains reference information about all of the configuration
directives that can be included in a <code>conf/server.xml file to
configure the behavior of the Tomcat 6 Servlet/JSP container.  It does not
attempt to describe which configuration directives should be used to perform
specific tasks - for that, see the various <em>HOW-TO documents on the
main index page.</p>

<p>The configuration element descriptions are organized into the following
major categories:</p>
<ul>
<li>Top Level Elements - <Server> is the
    root element of the entire configuration file, while
    <code><Service> represents a group of Connectors that is
    associated with an Engine.</li>
<li>Connectors - Represent the interface between external
    clients sending requests to (and receiving responses from) a particular
    Service.</li>
<li>Containers - Represent components whose function is to
    process incoming requests, and create the corresponding responses.
    An Engine handles all requests for a Service, a Host handles all requests
    for a particular virtual host, and a Context handles all requests for a
    specific web application.</li>
<li>Nested Components - Represent elements that can be
    nested inside the element for a Container.  Some elements can be nested
    inside any Container, while others can only be nested inside a
    Context.</li>
</ul>

<p>For each element, the corresponding documentation follows this general
outline:</p>
<ul>
<li>Introduction - Overall description of this particular
    component.  There will be a corresponding Java <em>interface (in
    the <code>org.apache.catalina pacakge) that is implemented by one
    or more standard implementations.</li>
<li>Attributes - The set of attributes that are legal for
    this element.  Generally, this will be subdivided into <em>Common
    attributes that are supported by all implementations of the corresponding
    Java interface, and <em>Standard Implementation attributes that are
    specific to a particular Java class that implements this interface.
    The names of required attributes are <strong>bolded.
<li>Nested Components - Enumerates which of the Nested
    Components</em> can be legally nested within this element.
<li>Special Features - Describes the configuration of a large
    variety of special features (specific to each element type) that are
    supported by the standard implementation of this interface.</li>
</ul>

</section>


</body>
</document>

Other Tomcat examples (source code examples)

Here is a short list of links related to this Tomcat index.xml source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.