73 lines
2.1 KiB
XML
73 lines
2.1 KiB
XML
<?xml version = '1.0' encoding = 'windows-1252'?>
|
|
<!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>
|
|
<description>Empty web.xml file for Web Application</description>
|
|
<servlet>
|
|
<servlet-name>action</servlet-name>
|
|
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
|
|
<init-param>
|
|
<param-name>config</param-name>
|
|
<param-value>/WEB-INF/struts-config.xml</param-value>
|
|
</init-param>
|
|
<init-param>
|
|
<param-name>debug</param-name>
|
|
<param-value>2</param-value>
|
|
</init-param>
|
|
<init-param>
|
|
<param-name>detail</param-name>
|
|
<param-value>2</param-value>
|
|
</init-param>
|
|
<init-param>
|
|
<param-name>validate</param-name>
|
|
<param-value>true</param-value>
|
|
</init-param>
|
|
<load-on-startup>1</load-on-startup>
|
|
</servlet>
|
|
|
|
|
|
<servlet>
|
|
<servlet-name>HelpServlet</servlet-name>
|
|
<servlet-class>wenrgise.help.webtier.servlet.HelperServlet</servlet-class>
|
|
</servlet>
|
|
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>action</servlet-name>
|
|
<url-pattern>*.do</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>HelpServlet</servlet-name>
|
|
<url-pattern>/helpServlet</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
|
|
<session-config>
|
|
<session-timeout>3000</session-timeout>
|
|
</session-config>
|
|
<mime-mapping>
|
|
<extension>html</extension>
|
|
<mime-type>text/html</mime-type>
|
|
</mime-mapping>
|
|
<mime-mapping>
|
|
<extension>txt</extension>
|
|
<mime-type>text/plain</mime-type>
|
|
</mime-mapping>
|
|
<welcome-file-list>
|
|
<welcome-file>index.jsp</welcome-file>
|
|
<welcome-file>index.html</welcome-file>
|
|
</welcome-file-list>
|
|
<taglib>
|
|
<taglib-uri>/WEB-INF/struts-bean.tld</taglib-uri>
|
|
<taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
|
|
</taglib>
|
|
<taglib>
|
|
<taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
|
|
<taglib-location>/WEB-INF/struts-html.tld</taglib-location>
|
|
</taglib>
|
|
<taglib>
|
|
<taglib-uri>/WEB-INF/struts-logic.tld</taglib-uri>
|
|
<taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
|
|
</taglib>
|
|
</web-app> |