web.xml.txt
上传用户:bj_pst
上传日期:2019-07-07
资源大小:7353k
文件大小:6k
源码类别:

Java编程

开发平台:

Java

  1.   Licensed to the Apache Software Foundation (ASF) under one or more
  2.   contributor license agreements.  See the NOTICE file distributed with
  3.   this work for additional information regarding copyright ownership.
  4.   The ASF licenses this file to You under the Apache License, Version 2.0
  5.   (the "License"); you may not use this file except in compliance with
  6.   the License.  You may obtain a copy of the License at
  7.       http://www.apache.org/licenses/LICENSE-2.0
  8.   Unless required by applicable law or agreed to in writing, software
  9.   distributed under the License is distributed on an "AS IS" BASIS,
  10.   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11.   See the License for the specific language governing permissions and
  12.   limitations under the License.
  13. <?xml version="1.0" encoding="ISO-8859-1"?>
  14. <!DOCTYPE web-app 
  15.     PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" 
  16.     "http://java.sun.com/dtd/web-app_2_3.dtd">
  17. <web-app>
  18.     <!-- General description of your web application -->
  19.     <display-name>My Web Application</display-name>
  20.     <description>
  21.       This is version X.X of an application to perform
  22.       a wild and wonderful task, based on servlets and
  23.       JSP pages.  It was written by Dave Developer
  24.       (dave@mycompany.com), who should be contacted for
  25.       more information.
  26.     </description>
  27.     <!-- Context initialization parameters that define shared
  28.          String constants used within your application, which
  29.          can be customized by the system administrator who is
  30.          installing your application.  The values actually
  31.          assigned to these parameters can be retrieved in a
  32.          servlet or JSP page by calling:
  33.              String value =
  34.                getServletContext().getInitParameter("name");
  35.          where "name" matches the <param-name> element of
  36.          one of these initialization parameters.
  37.          You can define any number of context initialization
  38.          parameters, including zero.
  39.     -->
  40.     <context-param>
  41.       <param-name>webmaster</param-name>
  42.       <param-value>myaddress@mycompany.com</param-value>
  43.       <description>
  44.         The EMAIL address of the administrator to whom questions
  45.         and comments about this application should be addressed.
  46.       </description>
  47.     </context-param>
  48.     <!-- Servlet definitions for the servlets that make up
  49.          your web application, including initialization
  50.          parameters.  With Tomcat, you can also send requests
  51.          to servlets not listed here with a request like this:
  52.            http://localhost:8080/{context-path}/servlet/{classname}
  53.          but this usage is not guaranteed to be portable.  It also
  54.          makes relative references to images and other resources
  55.          required by your servlet more complicated, so defining
  56.          all of your servlets (and defining a mapping to them with
  57.          a servlet-mapping element) is recommended.
  58.          Servlet initialization parameters can be retrieved in a
  59.          servlet or JSP page by calling:
  60.              String value =
  61.                getServletConfig().getInitParameter("name");
  62.          where "name" matches the <param-name> element of
  63.          one of these initialization parameters.
  64.          You can define any number of servlets, including zero.
  65.     -->
  66.     <servlet>
  67.       <servlet-name>controller</servlet-name>
  68.       <description>
  69.         This servlet plays the "controller" role in the MVC architecture
  70.         used in this application.  It is generally mapped to the ".do"
  71.         filename extension with a servlet-mapping element, and all form
  72.         submits in the app will be submitted to a request URI like
  73.         "saveCustomer.do", which will therefore be mapped to this servlet.
  74.         The initialization parameter namess for this servlet are the
  75.         "servlet path" that will be received by this servlet (after the
  76.         filename extension is removed).  The corresponding value is the
  77.         name of the action class that will be used to process this request.
  78.       </description>
  79.       <servlet-class>com.mycompany.mypackage.ControllerServlet</servlet-class>
  80.       <init-param>
  81.         <param-name>listOrders</param-name>
  82.         <param-value>com.mycompany.myactions.ListOrdersAction</param-value>
  83.       </init-param>
  84.       <init-param>
  85.         <param-name>saveCustomer</param-name>
  86.         <param-value>com.mycompany.myactions.SaveCustomerAction</param-value>
  87.       </init-param>
  88.       <!-- Load this servlet at server startup time -->
  89.       <load-on-startup>5</load-on-startup>
  90.     </servlet>
  91.     <servlet>
  92.       <servlet-name>graph</servlet-name>
  93.       <description>
  94.         This servlet produces GIF images that are dynamically generated
  95.         graphs, based on the input parameters included on the request.
  96.         It is generally mapped to a specific request URI like "/graph".
  97.       </description>
  98.     </servlet>
  99.     <!-- Define mappings that are used by the servlet container to
  100.          translate a particular request URI (context-relative) to a
  101.          particular servlet.  The examples below correspond to the
  102.          servlet descriptions above.  Thus, a request URI like:
  103.            http://localhost:8080/{contextpath}/graph
  104.          will be mapped to the "graph" servlet, while a request like:
  105.            http://localhost:8080/{contextpath}/saveCustomer.do
  106.          will be mapped to the "controller" servlet.
  107.          You may define any number of servlet mappings, including zero.
  108.          It is also legal to define more than one mapping for the same
  109.          servlet, if you wish to.
  110.     -->
  111.     <servlet-mapping>
  112.       <servlet-name>controller</servlet-name>
  113.       <url-pattern>*.do</url-pattern>
  114.     </servlet-mapping>
  115.     <servlet-mapping>
  116.       <servlet-name>graph</servlet-name>
  117.       <url-pattern>/graph</url-pattern>
  118.     </servlet-mapping>
  119.     <!-- Define the default session timeout for your application,
  120.          in minutes.  From a servlet or JSP page, you can modify
  121.          the timeout for a particular session dynamically by using
  122.          HttpSession.getMaxInactiveInterval(). -->
  123.     <session-config>
  124.       <session-timeout>30</session-timeout>    <!-- 30 minutes -->
  125.     </session-config>
  126. </web-app>