view gnv/src/main/webapp/WEB-INF/web.xml @ 167:1857273577e3

Added Documentation of Configuration-Entries. gnv/trunk@333 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Fri, 13 Nov 2009 12:58:58 +0000
parents ec56ef8f3e58
children 47e3647af88f
line wrap: on
line source
<!DOCTYPE web-app PUBLIC
 "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
 "http://java.sun.com/dtd/web-app_2_3.dtd" >

<web-app>
  <display-name>Archetype Created Web Application</display-name>
  <servlet>
        <servlet-name>action</servlet-name>
        <servlet-class>de.intevation.gnv.servlet.GNVActionServlet</servlet-class>
        
        <!--  The Struts Configuration, relative to the Project-Folder,
              which should be used to configure this Project.  -->
        <init-param>
            <param-name>config</param-name>
            <param-value>/WEB-INF/config/struts-config.xml</param-value>
        </init-param>
        
        <!--  The Log4J Configuration, relative to the Project-Folder,
              which should be used in this Project.  -->
        <init-param>
            <param-name>de.intevation.gnv.servlet.log4j.configuration</param-name>
            <param-value>WEB-INF/config/log4j.properties</param-value>
        </init-param>
        
        <!--  The Number of ArtifacDatabases which are configured in this Document. -->
        <init-param>
            <param-name>de.intevation.gnv.artifactdatabase.client.ArtifactDatabase.count</param-name>
            <param-value>1</param-value>
        </init-param>
        
        <!--  One URL to an ArtifactDatabase which should be used in this Project.
              It is possible to define several Artifactdatabases according to the
              Number which is configured above. It is necessary to change the Count
              - Number in param-name - for each Artifactdatabase.
              The first one must be 1 -->
         <init-param>
            <param-name>de.intevation.gnv.artifactdatabase.client.ArtifactDatabase.url.1</param-name>
            <param-value>http://localhost:8181</param-value>
        </init-param>
        
        <!--  Load the Servlet once on Systemstartup. 
              This should be done to configure the GNV at startup
              and not if the first user will call a Page. -->
        <load-on-startup>1</load-on-startup>
        
    </servlet>
    <!-- Standard Action Servlet Mapping -->
    <servlet-mapping>
        <servlet-name>action</servlet-name>
        <url-pattern>*.do</url-pattern>
    </servlet-mapping>
</web-app>

http://dive4elements.wald.intevation.org