<?xml version="1.0" encoding="UTF-8"?>
<!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>
<!--==============================================================
CONTEXT-PARAM
===============================================================-->
<!--============================================================
FILTER
=============================================================-->
<!--============================================================
FILTER MAPPING
=============================================================-->
<!--==============================================================
SERVLET
===============================================================-->
<servlet>
<servlet-name>action</servlet-name>
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
<init-param>
<param-name>application</param-name>
<param-value>properties.messages.messages</param-value>
</init-param>
<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/resource/conf/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>
<load-on-startup>1</load-on-startup>
</servlet>
<!--==============================================================
SERVLET MAPPING
===============================================================-->
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<!--==============================================================
TAGLIBS
===============================================================-->
<!--============================================================
STRUTS BEANS
=============================================================-->
<taglib>
<taglib-uri>struts-bean</taglib-uri>
<taglib-location>/WEB-INF/resource/tld/struts-bean.tld</taglib-location>
</taglib>
<!--============================================================
STRUTS HTML
=============================================================-->
<taglib>
<taglib-uri>struts-html</taglib-uri>
<taglib-location>/WEB-INF/resource/tld/struts-html.tld</taglib-location>
</taglib>
<!--============================================================
STRUTS LOGIC
=============================================================-->
<taglib>
<taglib-uri>struts-logic</taglib-uri>
<taglib-location>/WEB-INF/resource/tld/struts-logic.tld</taglib-location>
</taglib>
<!--============================================================
STRUTS NESTED
=============================================================-->
<taglib>
<taglib-uri>struts-nested</taglib-uri>
<taglib-location>/WEB-INF/resource/tld/struts-nested.tld</taglib-location>
</taglib>
<!--============================================================
STRUTS TEMPLATE
=============================================================-->
<taglib>
<taglib-uri>struts-template</taglib-uri>
<taglib-location>/WEB-INF/resource/tld/struts-template.tld</taglib-location>
</taglib>
<!--============================================================
STRUTS TILES
=============================================================-->
<taglib>
<taglib-uri>struts-tiles</taglib-uri>
<taglib-location>/WEB-INF/resource/tld/struts-tiles.tld</taglib-location>
</taglib>
<!--============================================================
JSTL CORE EL
=============================================================-->
<taglib>
<taglib-uri>jstl-core</taglib-uri>
<taglib-location>/WEB-INF/resource/tld/c.tld</taglib-location>
</taglib>
<!--============================================================
JSTL CORE RT
=============================================================-->
<taglib>
<taglib-uri>jstl-core_rt</taglib-uri>
<taglib-location>/WEB-INF/resource/tld/c-rt.tld</taglib-location>
</taglib>
<!--============================================================
JSTL XML EL
=============================================================-->
<taglib>
<taglib-uri>jstl-xml</taglib-uri>
<taglib-location>/WEB-INF/resource/tld/x.tld</taglib-location>
</taglib>
<!--============================================================
JSTL XML RT
=============================================================-->
<taglib>
<taglib-uri>jstl-xml_rt</taglib-uri>
<taglib-location>/WEB-INF/resource/tld/x-rt.tld</taglib-location>
</taglib>
<!--============================================================
JSTL FMT EL
=============================================================-->
<taglib>
<taglib-uri>jstl-fmt</taglib-uri>
<taglib-location>/WEB-INF/resource/tld/fmt.tld</taglib-location>
</taglib>
<!--============================================================
JSTL FMT RT
=============================================================-->
<taglib>
<taglib-uri>jstl-fmt_rt</taglib-uri>
<taglib-location>/WEB-INF/resource/tld/fmt-rt.tld</taglib-location>
</taglib>
<!--============================================================
JSTL SQL EL
=============================================================-->
<taglib>
<taglib-uri>jstl-sql</taglib-uri>
<taglib-location>/WEB-INF/resource/tld/sql.tld</taglib-location>
</taglib>
<!--============================================================
JSTL SQL RT
=============================================================-->
<taglib>
<taglib-uri>jstl-sql_rt</taglib-uri>
<taglib-location>/WEB-INF/resource/tld/sql-rt.tld</taglib-location>
</taglib>
<!--==============================================================
RESOURCE REF Tomcat standard for JNDI
===============================================================-->
</web-app>