blob: 18f291ca09846227794b9b94286afa3b8dc44b2f [file] [log] [blame]
<?xml version="1.0" encoding="ISO-8859-1"?>
<!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>Acme Corp</display-name>
<!-- START SNIPPET: example -->
<filter>
<filter-name>action2</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
</filter>
<filter-mapping>
<filter-name>action2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!-- END SNIPPET: example -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- START SNIPPET: freemarkerSupport -->
<servlet>
<servlet-name>JspSupportServlet</servlet-name>
<servlet-class>org.apache.struts2.views.JspSupportServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<!-- END SNIPPET: freemarkerSupport -->
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.jsp</welcome-file>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<!-- START SNIPPET: taglib -->
<!--
This typically isn't required, as the taglib is included in struts-action-2.0.jar.
If you really need a taglib configuration within web.xml, copy struts/src/java/META-INF/taglib.tld
to the WEB-INF directory as tags.tld.
-->
<!--
<taglib>
<taglib-uri>tags</taglib-uri>
<taglib-location>/WEB-INF/tags.tld</taglib-location>
</taglib>
-->
<!-- END SNIPPET: taglib -->
</web-app>